如何获取带有加号和括号的电话号码并仅返回号码?
我有一个简单的问题,我有一个这样的电话:+1 (123) 123-1234,我想使用正则表达式从该字符串中取出数字。
I have a simple problem I have a phone like this: +1 (123) 123-1234 and I want to just take the numbers out of that string using regex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这将删除非数字字符:
This will strip out an non-numeric characters:
使用正则表达式是一种解决方案。 另一种方法是使用 LINQ(假设您使用的是 .Net 3.5)
最终结果是相同的,但我认为在这种情况下 LINQ 比 RegEx 提供了一些优势。 首先,可读性。 正则表达式要求您知道“D”表示非数字(与 Char.IsDigit() 相比) - 此处的注释中已经存在对此的混淆。 另外,我做了一个非常简单的基准测试,每种方法执行 100,000 次。
LINQ:127ms
RegEx:485ms
因此,乍一看,在这种情况下 LINQ 的性能似乎优于 Regex。 而且,我认为它更具可读性。
Using RegEx is one solution. Another way would be to use LINQ (provided you are using .Net 3.5)
The end result is the same, but I think LINQ offers some advantages over RegEx in this case. First, readability. The RegEx requires you to know that "D" means Non digit (compared to Char.IsDigit())- there is confusion about that already in the comments here. Also, I did a very simple benchmark, performing each method 100,000 times.
LINQ: 127ms
RegEx: 485ms
So, at a quick glance, it seems like LINQ out performs Regex in this situation. And, I'd argue it is more readable.
为什么不直接更换呢?
Why not just do a replace?