reg 电话号码
我如何将以下任何内容更改为仅数字
1-(999)-999-9999
1-999-999-9999
1-999-9999999
1(999)-999-9999
1(999)999-9999
我希望最终产品为 19999999999
How do i change any of the following to just numbers
1-(999)-999-9999
1-999-999-9999
1-999-9999999
1(999)-999-9999
1(999)999-9999
i want the final product to be 19999999999
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
最简单的方法是从字符串中删除所有非数字的内容,然后查看最终是否得到 10 位数字(如果强制使用 1,则为 11):
The easiest way would be to strip everything out of your string that's not a number and then see if you end up with a 10 digit number (or 11 if you're making the 1 mandatory):
尝试
这将过滤掉任何非数字。
try
This will filter out any non digits.
你真的不需要正则表达式......
You dont really need regex for this...