23
我已經包含字符串是這樣的:如何從字符串中去除逗號和句點?
"Favourite bands: coldplay, guns & roses, etc.,"
如何使用preg_replace
我刪除逗號和句號?
我已經包含字符串是這樣的:如何從字符串中去除逗號和句點?
"Favourite bands: coldplay, guns & roses, etc.,"
如何使用preg_replace
我刪除逗號和句號?
你可以使用
preg_replace('/[.,]/', '', $string);
但使用簡單的字符替換正則表達式是矯枉過正。
你會更好使用strtr:
strtr($string, array('.' => '', ',' => ''));
str_replace(array('.', ','), '' , $string);