vote up 1 vote down star
<?php
$string = 'The quick brown fox jumped over the lazy dog.';
$patterns[0] = '/quick/';
$patterns[1] = '/brown/';
$patterns[2] = '/fox/';
$replacements[0] = 'slow';
$replacements[1] = 'black';
$replacements[2] = 'bear';
echo preg_replace($patterns, $replacements, $string);
?>

Ok guys, Now I have the above code. It just works well. Now for example I'd like to also replace "lazy" and "dog" with "slow" What I have to do now is would look like this, right?

<?php
$string = 'The quick brown fox jumped over the lazy dog.';
$patterns[0] = '/quick/';
$patterns[1] = '/brown/';
$patterns[2] = '/fox/';
$patterns[3] = '/lazy/';
$patterns[4] = '/dog/';
$replacements[0] = 'slow';
$replacements[1] = 'black';
$replacements[2] = 'bear';
$replacements[3] = 'slow';
$replacements[4] = 'slow';
echo preg_replace($patterns, $replacements, $string);
?>

Ok.

So my question is, is there any way I can do like this

$patterns[0] = '/quick/', '/lazy/', '/dog/';
$patterns[1] = '/brown/';
$patterns[2] = '/fox/';
$replacements[0] = 'slow';
$replacements[1] = 'black';
$replacements[2] = 'bear';

Thanks

flag
Someone who can should retag this with regex and perhaps remove arrays. – jmucchiello Dec 14 '08 at 21:33

3 Answers

vote up 2 vote down check

You can use pipes for "Alternation":

$patterns[0] = '/quick|lazy|dog/';
link|flag
Thanks, The output is exactly what I expect. – Myanmar Dec 14 '08 at 18:22
vote up 2 vote down

why not use str_replace ?

$output = str_replace(array('quick', 'brown', 'fox'), array('lazy', 'white', 'rabbit'), $input)
link|flag
vote up 0 vote down

You could also just assign the array like so:

$patterns = array('/quick/','/brown/','/fox/','lazy/',/dog/');

which of course assign 0-4

link|flag

Your Answer

Get an OpenID
or

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