You could loop it with foreach (which I think is the same way Perl handles
the ex you gave).
foreach ($myArr as $myStr) {
$myStr = ereg_replace($regexp, $myStr);
}
Note quite "one statement", but if you really wanted to shorted it (and in
the opinion of most sacrafice readability), you could say:
foreach ($myArr as $myStr) $myStr = ereg_replace(...etc...);
--Toby
----- Original Message -----
From: "Elliot L. Tobin" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 16, 2001 11:59 AM
Subject: [PHP] regexps
> Is there a way to call one regexp on multiple variables, in one
statement?
> In Perl, I'd do:
>
> s/this/that for ($var1, $var2, $var3);
>
> tia.. and please reply directly.
>
> [EMAIL PROTECTED]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]