可以使用正則表達式來提取字符串中的數字,例如使用preg_match_all函數來匹配所有的數字:
$str = "Hello123World456";
preg_match_all('/\d+/', $str, $matches);
$numbers = $matches[0];
print_r($numbers);
輸出結果:
Array
(
[0] => 123
[1] => 456
)
在上述代碼中,使用正則表達式/\d+/
匹配連續的數字,然后使用preg_match_all函數將所有匹配結果保存在$matches變量中。最后將提取到的數字打印出來。