I would like to make a whole word replace using php Example : If I have

$text = "Hello hellol hello, Helloz";

and I use

$newtext = str_replace("Hello",'NEW',$text);

The new text should look like

NEW hello1 hello, Helloz

PHP returns

NEW hello1 hello, NEWz

Thanks.

link|improve this question

70% accept rate
feedback

3 Answers

up vote 9 down vote accepted

You want to use regular expressions. The \b matches a word boundary.

$text = preg_replace('/\bHello\b/', 'NEW', $text);

If $text contains UTF-8 text, you'll have to add the Unicode modifier "u", so that non-latin characters are not misinterpreted as word boundaries:

$text = preg_replace('/\bHello\b/u', 'NEW', $text);
link|improve this answer
feedback
preg_replace('/hello\b/i','NEW',$_text)
link|improve this answer
what does the /i mean ? – nevergone Aug 7 '10 at 7:51
1  
make the comparison case-insensitive, so it matches Hello, hello, hElLo, hellO, etc. – stillstanding Aug 7 '10 at 11:18
-1 @stillstanding: If you look at the examples you will see the comparison should be case sensitive. – Majid Fouladpour Aug 7 '10 at 16:52
1  
Nothing in the example says it should be – stillstanding Aug 7 '10 at 17:15
1  
@Majid, the hello, is unchanged because there's a comma right after it! – stillstanding Aug 8 '10 at 4:11
show 2 more comments
feedback

FYI: I tried this preg_replace(). It's not working as expected in UTF-8 characters.

link|improve this answer
You have to use the Unicode modifier for that. I have updated the accepted answer. – Josh Davis Sep 5 '10 at 7:38
Awesome! Thanks Davis. – Abu Sithik Sep 7 '10 at 8:43
feedback

Your Answer

 
or
required, but never shown

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