就像,如果这个问题标题的第二部分不存在,我可以这样做:
$string = 'Hello,this is my string.';
$replacedstring = str_replace(',', ', ', $string);
但是,如果用户确实正确格式化了句子,如Hello, this is my string.
. 然后这将导致它变成Hello, this is my string.
,这是我不想要的。
那么,我将如何preg_replace
在 PHP 中使用和类似的正则表达式函数来做到这一点?