需要 PHP 函数来比较两个字符串减去任何*特殊*字符

发布于 2024-11-05 14:17:54 字数 161 浏览 0 评论 0原文

我有两个字符串:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫性小仙女 2024-11-12 14:17:54

试试这个:

// Remove all non-numeric characters:
function removeStuff($string) {
    return preg_replace('/[^0-9]/', '', $str);
}

strcmp( removeStuff($str1), removeStuff($str2) );

Try this:

// Remove all non-numeric characters:
function removeStuff($string) {
    return preg_replace('/[^0-9]/', '', $str);
}

strcmp( removeStuff($str1), removeStuff($str2) );
欲拥i 2024-11-12 14:17:54
if (preg_replace('/[^0-9]+/', '', $str1) == preg_replace('/[^0-9]+/', '', $str)) {
  // They're equal, do whatever you want!
}

这将测试除去 0-9 以外的任何内容的两个字符串。

if (preg_replace('/[^0-9]+/', '', $str1) == preg_replace('/[^0-9]+/', '', $str)) {
  // They're equal, do whatever you want!
}

This'll test the two strings stripped of anything other than 0-9.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文