gpt4 book ai didi

javascript - 如何将文本重新格式化为不同的模式?

转载 作者:行者123 更新时间:2023-12-01 03:06:46 24 4
gpt4 key购买 nike

如何编写代码以将 BBBBB-AAA 的模式更改为 0AAABBBBB?我使用的是 asp.net、vb.net 和 jQuery。

加拿大银行帐户路由号码的格式:

A Canadian routing number displayed on a check needs to be reformatted differently for electronic payments. If a check displays a routing number as BBBBB-AAA (where AAA indicates the Financial Institution and BBBBB is the branch), then the routing number must be changed to 0AAABBBBB to process the payment electronically. For example, if a check from an account issued by the Bank of Montreal showed the routing number 00011-001, then that number would need to be reformatted to 000100011 for the payment to be electronically processed.

我在 .aspx 页面上从用户那里获取数据:

<input id="txtBankCode" maxlength="9" required="required" />

我在 jQuery .js 页面上获取数据:

var bankCode = $("#txtBankCode").val()

我需要将 bankCode 重新排列为 0AAABBBBB 格式,而不是 BBBBB-AAA。我猜有些用户不会输入破折号,而有些用户会。我怎样才能做到这一点?

最佳答案

鉴于连字符是可选的,您不能依赖它的存在来分割字符串。因此,替代解决方案是使用正则表达式根据输入格式重新组织字符串。试试这个:

这是一个 JS 解决方案:

var bankCode = 'BBBBB-AAA';
bankCode = bankCode.replace(/^(\w{5})-?(\w{3})$/, '0$2$1');

console.log(bankCode);

VB 中的逻辑相同:

Dim bankCode As String = "BBBBB-AAA"
bankCode = Regex.Replace(bankCode, "^(\w{5})-?(\w{3})$", "0$2$1")

Console.WriteLine(bankCode)

关于javascript - 如何将文本重新格式化为不同的模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59900480/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com