标签: php string
在采访中询问如何从这个字符串中打印一个数字总和 我尝试了基础知识,但没有奏效。
$ str =“欢迎13,14,15,ab16,14ab”;
答案 0 :(得分:0)
您可以先使用它来分隔文字和数字,然后再继续,
preg_match_all('/[^\d]+/', $string, $textMatch); preg_match('/\d+/', $string, $numMatch); $text = $textMatch[0]; $num = $numMatch[0];