How can I find & highlight all words from array in text?

example:

$words = array('Test', 'I', 'tHiS', 'diFFerent');

Expecting result is: Hi, i'm in this simple test I'd like to show you who we can replace different words.

link|improve this question

77% accept rate
What do you mean with "highlight"? Are you talking about bolding in html? – Aurelio De Rosa Oct 11 '11 at 22:35
feedback

2 Answers

up vote 1 down vote accepted
$str = preg_replace("~(".implode("|" , array_map(function($a){
    return preg_quote($a,"~");
},$words)).")~i" , "<strong>$1</strong>" , $str);

you may try

$str = preg_replace("~(".implode("|" , array_map(function($a){
    return '\b'.preg_quote($a,"~").'\b';
},$words)).")~i" , "<strong>$1</strong>" , $str);

to specify that it should be full word

link|improve this answer
This works pretty good for english words, but, fails on Russian, especially on words with different case. – Yekver Oct 12 '11 at 11:38
try to use u modifier with i one to compare as UTF-8 – RiaD Oct 12 '11 at 11:47
works better but I still have a problem with case-insensitive which is not working for russian, but works for english. Any ideas? – Yekver Oct 12 '11 at 11:58
Haven't any ideas now. – RiaD Oct 12 '11 at 18:33
feedback
$words = array('Test', 'I', 'tHiS', 'diFFerent');
$str = "Hi, i'm in this simple test I'd like to show you who we can replace different words.";
$str = preg_replace("/(".implode("|" , $words).")/i" , "<b>$1</b>" , $str);
echo $str;

However, this will highlight all "I" in the string.

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.