Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to replace multiple synonyms with one specific word.

<?p

$a = array(
'truck',
'vehicle',
'seddan',
'coupe',
'Toyota',
);
$b = array(
'car',
'car',
'car',
'car',
'Lexus',
);
$str = '

Honda is a truck. 
Toyota is a vehicle. 
Nissan is a sedan. 
Scion is a coupe.

';
echo str_replace($a,$b,$str);
?>

RESULT: Honda is a car. Lexus is a car. Nissan is a car. Scion is a car.

Can someone show me a clean way of replacing "vehicle, truck, coupe, sedan" with the word "car" instead of me replacing all 4 of them individually. Thank you.

share|improve this question

3 Answers

up vote 2 down vote accepted
$a = array( 'truck', 'vehicle', 'seddan', 'coupe' );
$str = 'Honda is a truck. Toyota is a vehicle. Nissan is a sedan. Scion is a coupe.';
echo str_replace($a,'car',str_replace('Lexus','Toyota',$str));
share|improve this answer
that didnt seem to work. It doesnt replace the "truck" with "car"... The result ends up being "Honda is a car. Lexus is a . Nissan is a sedan. Scion is a ." – Jim B Bob Sep 30 '12 at 22:44
Updated my answer - second parameter must be a single string to allow multiple replacements. Sorry for that. – Eugen Rieck Sep 30 '12 at 22:47
thank you!!! This worked exactly the way I wanted it. Thanks!!! – Jim B Bob Sep 30 '12 at 23:28
Can you please show me how I can correct this modified version of the code. codepad.org/DhPgwPCR Thanks! – Jim B Bob Oct 1 '12 at 0:44

You should use strtr

echo strtr($str,array_combine($a,$b)); 

Or Just combine $a and $b into one array

$ab = array('truck' => 'car','vehicle' => 'car','sedan' => 'var','coupe' => 'var','Toyota' => 'Lexus');
echo strtr($str, $ab);

Output

Honda is a car. 
Lexus is a car. 
Nissan is a car. 
Scion is a car.
share|improve this answer

Something like

$a = array( 'truck', 'vehicle', 'seddan', 'coupe' ); 

$str = 'Honda is a truck. Toyota is a vehicle. Nissan is a sedan. Scion is a coupe.'; 

echo str_replace($a,'car',$str); 

Should work.

http://codepad.org/1LhtcOSR

Edit:

Something like this should yield expected results: http://pastebin.com/xGzYiCk3

$text = '{test|test2|test3} some other stuff {some1|some2|some3}';

Output:

test3 some other stuff some1
test2 some other stuff some2
test3 some other stuff some3
test3 some other stuff some1
share|improve this answer
thanks this code worked as well. – Jim B Bob Sep 30 '12 at 23:40
Glad I could help you out, how about an upvote :D Thanks! – Johnathon Malizia Sep 30 '12 at 23:44
Hi, I tried giving you a vote up but its not letting me. I'm new here. can you please correct this code for me. codepad.org/DhPgwPCR thanks – Jim B Bob Oct 1 '12 at 0:21
You'll need to give a more detailed explanation of what it is you're trying to accomplish and I can help better :) – Johnathon Malizia Oct 1 '12 at 1:55
Okay so I use this website to "spin articles" to randomly select different words that are synonyms for example use "tale or story or storyline" in a random order everytime they appear in an article. ezarticlelink.com/articlespinner/free.php thats the website im using. try typing "The {story|tale|storyline} of the book is really nice." and you can see what I mean by spinning an article. But with the modified code it doesn't output it properly. – Jim B Bob Oct 1 '12 at 3:12
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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