私はここにいくつかのコードを持っています:
$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}
どうすればこれを達成できますか?