我的字符串包含这样的内容:
"Favourite bands: coldplay, guns & roses, etc.,"
如何使用preg_replace
删除逗号和句号?
答案 0 :(得分:116)
您可以使用
preg_replace('/[.,]/', '', $string);
但使用正则表达式进行简单的字符替换是过度的。
您最好使用strtr:
strtr($string, array('.' => '', ',' => ''));
str_replace(array('.', ','), '' , $string);