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 just wondering how I could replace the second instance of a string inside a string in php such as follows:

a - b - c

Where it woulld add an extra space after the second "-" but only if it finds 2.

share|improve this question

3 Answers

up vote 5 down vote accepted
$finds = explode('-', "a - b - c");
if (count($finds) == 3) {
  $finds[2] = " {$finds[2]}";
}

$finds = implode('-', $finds);
share|improve this answer
1  
+1 -- Posted the same reply (now deleted) but way too late :). You want to correct your last line though. like, $result=implode("-",$finds); – David V. Mar 10 '10 at 21:46
haha yea, i already had to edit bc i missed the 2nd arg in explode lol. – ocdcoder Mar 11 '10 at 0:31
$str ="a - b - c";    
if (substr_count($str,"-")>2){
  print preg_replace("/^(.*)-(.*)-(.*)/","\\1-\\2- \\3",$str);
}
share|improve this answer
this doesn't work if there is more than 3 – ocdcoder Mar 11 '10 at 0:32
then add a check for that. – ghostdog74 Mar 11 '10 at 0:45

Substring the string starting at the index of the first dash using strpos then do a str_replace on the rest of the string. Concatenate the two together.

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.