I have string containing something like this:
"Favourite bands: coldplay, guns & roses, etc.,"
How can I remove commas and periods using preg_replace?
|
I have string containing something like this:
How can I remove commas and periods using |
||||
|
|
|
You could use
but using a regular expression for simple character substitution is overkill. You'd be better off using strtr:
or str_replace:
|
||||