PHP/Zend:如何从字符串中删除所有字符并仅保留数字

发布于 2024-08-29 04:33:37 字数 119 浏览 3 评论 0原文

我只想保留数字并从变量中删除所有字符。

例如:

input: +012-(34).56.(ASD)+:"{}|78*9
output: 0123456789

I want to keep only numbers and remove all characters from a variable.

For example:

input: +012-(34).56.(ASD)+:"{}|78*9
output: 0123456789

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

幸福还没到 2024-09-05 04:33:37

这是一般的做法:

$numbers = preg_replace('/[^0-9]+/', '', '+012-(34).56.(ASD)+:"{}|78*9');
echo $numbers;

输出:

0123456789

This is how to do that generically:

$numbers = preg_replace('/[^0-9]+/', '', '+012-(34).56.(ASD)+:"{}|78*9');
echo $numbers;

Output:

0123456789
绮烟 2024-09-05 04:33:37

使用 Zend_Filter_Digits

返回字符串 $value,删除除数字字符之外的所有字符。

通过 Zend_Filter 进行静态调用的示例:

echo Zend_Filter::filterStatic('abc-123-def-456', 'Digits'); // 123456

Digits 实例的示例

$digits = new Zend_Filter_Digits;
echo $digits->filter('abc-123-def-456'); // 123456;

在内部,过滤器将使用 preg_replace 来处理输入字符串。根据是否在启用 UTF8 和 Unicode 的情况下编译正则表达式引擎,将使用以下模式之一:

  • [^0-9] - 如果禁用 Unicode,则进行过滤
  • [^[:digit: ]] - 过滤带 mbstring 的值
  • [\p{^N}] - 过滤不带 mbstring 的值

请参阅 http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Filter/数字.php

With Zend_Filter_Digits

Returns the string $value, removing all but digit characters.

Example with static call through Zend_Filter:

echo Zend_Filter::filterStatic('abc-123-def-456', 'Digits'); // 123456

Example with Digits instance

$digits = new Zend_Filter_Digits;
echo $digits->filter('abc-123-def-456'); // 123456;

Internally, the filter will use preg_replace to process the input string. Depending on if the Regex Engine is compiled with UTF8 and Unicode enabled, one of these patterns will be used:

  • [^0-9] - Filter if Unicode is disabled
  • [^[:digit:]] - Filter for the value with mbstring
  • [\p{^N}] - Filter for the value without mbstring

See http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Filter/Digits.php

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