I am not good at regular expression.
In my address i have the following wildcard characters:
!@#$%^&*()_+./\;' "
I want to replace the above the wildcards from the address with nothing using preg_replace.
So if i have an address like this.
Street # 453, XYZ - Road. / City, State.
it should be replaced with
Street453RoadCityState
what is the proper pattern for this.
Thank you