随机变化电话号码的数据验证
我在我的 WPF(C#、VS 08)应用程序中存储不同长度的电话号码。
我将它们存储为字符串。我的问题是关于我的方法 AddNewPhoneNo(string phoneNo)
。
在此方法中,我使用 Int.TryParse
来验证传入的数字(即不为空,是数字...)。我后来意识到这可能不是最好的方法,因为这样我就只能使用 ± 2147483647 的号码。显然,电话号码并不总是这种情况。
有什么好的、简单的方法来验证电话号码?我想基本规则如下:
- 全数字
- 全正
- 最多 25 个字符(可能更多,但这暂时可以)
目前无法确定是否还有更多规则,可能就是这样。
I am storing phone numbers of varying lengths in my WPF (C#, VS 08) App.
I store them as strings. My question is about my method AddNewPhoneNo(string phoneNo)
.
In this method, I use Int.TryParse
to validate the incoming number (i.e. not null, is numeric...). I've since realized this is probably not the best way to do this, because then I am limited to a number which is ± 2147483647. Definetly this is not always the case with phone numbers.
What is a good, easy way to validate phone numbers? I guess the basic rules would be as follows:
- All numeric
- All positive
- Upto 25 chars (could be more, but this will to do for time being)
Can't thing if theres any more rules at the moment, that's probably it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的约束条件是字符串必须不为空,只能是数字,并且 <= 25 个字符,那么您可以简单地执行以下操作:
如果您的约束条件更复杂(例如,字符串可以包含数字分组,如“123- 456-7890”或括号如“(123)4567890”)那么你应该使用正则表达式。
If your constraints are that the string must be not-null, nothing but numbers, and <= 25 chars, then you can simply do the following:
If your constraints are more complex (e.g. the string can contain digit grouping like "123-456-7890" or parenthesis like "(123)4567890") then you should go with RegEx.
正则表达式模式怎么样: http://regexlib.com/REDetails.aspx?regexp_id=45< /a>8
How about a RegEx pattern: http://regexlib.com/REDetails.aspx?regexp_id=458
您可以尝试
Int64.TryParse
这将为您提供 ±9223372036854775807 的范围You could try
Int64.TryParse
which would give you a range of ±9223372036854775807