Same for example I have this:
Hello world!!
Hello all!
I want replace each "!" with a period for example. With PHP. How would I do that?
Same for example I have this:
Hello world!!
Hello all!
I want replace each "!" with a period for example. With PHP. How would I do that?
I figured out out. I cannot believe I didn't see this before. ! is a metacharacter so I need a '\' before it. That's why it wasn't working. Thanks.