我想替换像
这样的字符串
Category : Entertaiments, Movie,Music, Super Natural, Hobbies

(即使逗号和空格不一致)也是这样的
Category : <a href="http://someurl/entertaiments">Entertaiments</a>, <a href="http://someurl/movie">Movie</a>, <a href="http://someurl/music">Music</a>, <a href="http://someurl/super-natural">Super Natural</a>, <a href="http://someurl/hobbies">Hobbies</a>
&#13;
我已经尝试使用\w+(?=[,])
,但它无法正常工作
答案 0 :(得分:2)
如果您需要使用正则表达式,请尝试:
$string = 'Category : Entertaiments, Movie,Music, Super Natural, Hobbies';
$string = preg_replace('/,(\S)/',', $1', $string);