Possible Duplicate:
PHP string replace match whole word

What I want to do is to replace Tomato with Apple for example. The Probleim I'm running in is:

when the string contains "Tomatos" (mention the s) it will replace Tomato and leafe me with a string "Apples" (again mention the s).

Because "Tomato" != "Tomatos" (...s) it shall NOT replace.

Which PHP funktion is good for this task? I tried the str_replace function but it seems like it isn't possible to archive my task with it.


The words are seperated with ",".

link|improve this question
2  
preg_replace is the one – Shakti Singh Mar 8 '11 at 11:33
1  
exact duplicate of stackoverflow.com/questions/3426265/… – bažmegakapa Mar 8 '11 at 11:37
feedback

closed as exact duplicate by Gordon, Bill the Lizard Mar 8 '11 at 12:10

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

preg_replace. You can search for a regular expression, like \bTomato\b, which means whole word Tomato.

link|improve this answer
feedback

If you want to use str_replace try adding commas either side of the Tomato. Then it should only replace the word Tomato.

Otherwise you'll need preg_replace

link|improve this answer
feedback

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