gpt4 book ai didi

c# - 使用可选的 +88 或 01 前面的 11 位数字验证孟加拉国电话号码

转载 作者:太空狗 更新时间:2023-10-30 00:04:46 25 4
gpt4 key购买 nike

我正在使用以下正则表达式来验证印度电话号码。

我想在电话号码的 11 位数字前加 +88 或 01。

这是我正在使用的:

string mobileNumber = "+8801000000000";
if (new Regex(@"^([01]|\+88)?\d{11}").IsMatch(mobileNumber)){
MessageBox.Show("Mobile number is valide", "All information is required", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
}
else{
MessageBox.Show("Mobile number is not valide", "All information is required", MessageBoxButtons.OK, MessageBoxIcon.Error);
}

我该怎么做?

更新

如果我写手机号码。在 01 之前,超过 11 位会通知验证 mgs(无效的手机号码!)。好吧,我用过,它在 13 位时失败。它错误地更改了验证 mgs。

这是我的代码:

<input type="text" placeholder="Enter bKash wallet number" 
class="form-control" ng-model="BkashWalletNo" ng-disabled="AutoConfirmed"
name="BkashWalletNo" ng-pattern="/^(?:\+88|01)?\d{11}\r?$/" />
<p class="help-block" ng-show="form.BkashWalletNo.$error.pattern">Not valid mobile no.!</p>

最佳答案

您可以使用任何一种给定的解决方案来验证孟加拉手机号码。

正则表达式1:

/(^(\+88|0088)?(01){1}[3456789]{1}(\d){8})$/

正则表达式2

 /(^(\+8801|8801|01|008801))[1|3-9]{1}(\d){8}$/

正则表达式3

 (^([+]{1}[8]{2}|0088)?(01){1}[3-9]{1}\d{8})$

允许的手机号码示例

+8801812598624

008801812598624

01812598624

01712598624

01672598624

01919598624

01419598624

01319598624

等等

关于c# - 使用可选的 +88 或 01 前面的 11 位数字验证孟加拉国电话号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30658946/

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