gpt4 book ai didi

php - 在php中过滤掉字符串中的数字

转载 作者:IT王子 更新时间:2023-10-29 00:06:46 27 4
gpt4 key购买 nike

假设我有这些文本 'x34' 、 '150px' 、 '650dpi' 、 'e3r4t5' ...我怎样才能只得到数字?我的意思是我想要 34 、 150 、 650 、 345 没有任何其他字符。我的意思是将这个字符串的数字放入一个变量中。

最佳答案

$str = "e3r4t5";
$str_numbers_only = preg_replace("/[^\d]/", "", $str);

// $number = (int) $str;

关于php - 在php中过滤掉字符串中的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4837278/

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