Can anyone give me a quick summary of the differences please?

To my mind they both do the same thing?

Thanks

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

str_replace replaces a specific occurrence of a string, for instance "foo" will only match and replace that: "foo". preg_replace will do regular expression matching, for instance "/f.{2}/" will match and replace "foo", but also "fey", "fir", "fox", "f12", etc.

[EDIT]

See for yourself:

$string = "foo fighters";
$str_replace = str_replace('foo','bar',$string);
$preg_replace = preg_replace('/f.{2}/','bar',$string);
echo 'str_replace: ' . $str_replace . ', preg_replace: ' . $preg_replace;

The output is:

str_replace: bar fighters, preg_replace: bar barhters

:)

link|improve this answer
Hmm, not really seeing a preg_replace advantage, seems a little hit'n'miss! – benhowdle89 Mar 9 '11 at 12:25
2  
You didn't ask about advantages, but rather the difference between the two :D – mingos Mar 9 '11 at 12:30
Not complaining! Just an observation... – benhowdle89 Mar 9 '11 at 12:31
feedback

str_replace will just replace a fixed string with another fixed string, and it will be much faster.

The regular expression functions allow you to search for and replace with a non-fixed pattern called a regular expression. There are many "flavors" of regular expression which are mostly similar but have certain details differ; the one we are talking about here is Perl Compatible Regular Expressions (PCRE).

If they look the same to you, then you should use str_replace.

link|improve this answer
feedback

str_replace searches for pure text occurences while preg_replace for patterns.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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