需要 PHP 函数来比较两个字符串减去任何*特殊*字符
我有两个字符串:
1> +20122260699
2> +2012-2260 699
我想测试它们是否相等,而不计算除数字 0-9 之外的任何内容。我知道我可以使用一系列字符串替换,但是有没有更有效的方法来做到这一点?谢谢!
I have two strings:
1> +20122260699
2> +2012-2260 699
I want to test if they're both equal, without counting anything other than the digits 0-9. I know I could use a series of string replaces but is there a more efficient way of doing this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
这将测试除去 0-9 以外的任何内容的两个字符串。
This'll test the two strings stripped of anything other than 0-9.