我有这样的字符串:
$str = "old iccid : 809831 3245 345 new iccid : 999000 112221"
如何定义正则表达式以删除 PHP 中数字字符之间的空格字符,成为此输出?
$output = "old iccid : 8098313245345 new iccid : 999000112221";
我试过使用这种语法:
$output = preg_replace( '/\d[ *]\d/', '', $str);
但效果不佳。