Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

str_replace() doesn't deal with wildcards. You can use regular expressions for this instead (as long as you're sure that you want to change ALL %** to spaces):

preg_replace("/(%..|\+)+/", ' ', $string);

This will take your $string (which I presume to be already URL encoded) and replace all '+'s and '%**'s with spaces. Note that it will replace the sequence '%2C%2B' with two spaces (for two matches) EDIT: the regular expression now matches any number of space-substitutes and substitutes one space for all of them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.