gpt4 book ai didi

PHP/Zend : How to remove all chars from a string and keep only numbers

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:54:36 25 4
gpt4 key购买 nike

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

例如:

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

最佳答案

这是一般的做法:

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

输出:

0123456789

关于PHP/Zend : How to remove all chars from a string and keep only numbers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2635781/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com