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 want to convert a pattern like "5a " into "5A ". This pattern may appear at the beginning or middle of a larger string. I've tried this:

$string = preg_replace_callback("/(0-9)([a-z]) /", function($matches) {
  return $matches[1].strtoupper($matches[2]).' ';
}, $string);

But it doesn't work. No error - the string just stays as "5a ". Can you see where I've gone wrong?

share|improve this question

1 Answer

up vote 3 down vote accepted
/(0-9)([a-z]) /

should be

/([0-9])([a-z]) /
share|improve this answer
Duh! Working now. Thanks very much. :) – Holly Jan 2 at 23:00

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.