I have several encoded fields that look like this:
317+NALON++RD%2C%2BGananoque%2C%2BOntario%2C%2BCanada
The easy part is replacing the "+" with a space.
My challenge is replacing the "%2C" or "%2B" with a space.
Sometime the text after the "%" may be different, but it will always be two characters.
I tried using str_replace("%**", " ",urlencode($string)) but no luck.
Any ideas?