我这里有一些代码:
$testString = "text23hello54stack90overflow34test";
$testArray = preg_split("/[0-9]{2}/Uim", $testString);
echo "<pre>".print_r($testArray)."</pre>";
执行这些命令后,我有一个数组,其中包含:
{text, hello, stack, overflow, test}
我想修改它,所以我得到:
{text, 23hello, 54stack, 90overflow, 34test}
我怎样才能做到这一点?