逗号分隔词的正则表达式

时间:2017-07-04 07:33:21

标签: php regex

我想替换像

这样的字符串



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;
&#13;
&#13;

我已经尝试使用\w+(?=[,]),但它无法正常工作

1 个答案:

答案 0 :(得分:2)

如果您需要使用正则表达式,请尝试:

$string = 'Category : Entertaiments, Movie,Music, Super Natural, Hobbies';
$string = preg_replace('/,(\S)/',', $1', $string);