我想删除文本中间的逗号,我使用这行代码:
$str = preg_replace('/ [,]/', '', $str);
这句话没问题:
$str = ', this , is , my sentence';
结果是
, this is my sentence
但对于这句话:
$str = ', ,this , is , my sentence';
结果是:
,this is my sentence
我想要的结果是
, this is my sentence
可以解决这个问题的正则表达式是什么?