Thankyou
Diolch
danka

There seems to be a big difference between eregi_replace() and preg_replace

Am reding teh Sams - Regular Expressions in 10 mins bu the syntax seems ot be different. !!

regards
pete

Erwin Kerk wrote:
pete M wrote:

The pattern

$pattern = 'font\-size:.*?\;';

throwns the error
eregi_replace(): REG_BADRPT


Well, this should work (tested and all )

$pattern="|font\-size:.*?;|si";
$txt = preg_replace( $pattern, "", $txt );


Erwin

-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to