Jump to content

match word in string


dreamwest

Recommended Posts

Whats the quickest way to find a word in a string and wrap <b> tags around it?

 

$search =  "php web";
$striing = "PHP is the web scripting language of choice";

 

 

Basically im looking for the output to be :

"<b>PHP</b> is the <b>web</b> scripting language of choice"

 

Link to comment
https://forums.phpfreaks.com/topic/224566-match-word-in-string/
Share on other sites

If it's only those two specific words. you can do

<?php
$search = array('PHP','web');
$replace = array('<b>PHP</b>','<b>web</b>');
$str = "PHP is the web scripting language of choice";
$new = str_replace($search,$replace,$str);
echo $new;
?>

 

Ken

If you get your $search word(s) into a regular expression OR | format -

<?php
$search =  "php|web";
$string = "PHP is the web scripting language of choice";

$string = preg_replace("/($search)/i",'<b>\1</b>',$string);

echo $string;
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.