gpt4 book ai didi

php - 查找字符串中的最后一个数值

转载 作者:行者123 更新时间:2023-12-02 06:27:56 25 4
gpt4 key购买 nike

我有这个字符串#22aantal283xuitvoeren
在字符串中查找最后一个数字值的最佳方法是什么? (在这种情况下为283)

我不认为chop()substr()是要去的地方。

最佳答案

您可以使用preg_match_all并匹配所有数字。
然后,数组中的最后一项是字符串中的最后一个数字。

$s = "#22aantal283xuitvoeren";
preg_match_all("/\d+/", $s, $number);
echo end($number[0]); // 283

https://3v4l.org/44VUJ

关于php - 查找字符串中的最后一个数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50963480/

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