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 -- ------------------------------------------------------------------------ mail : [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] msn : [EMAIL PROTECTED] jabber : [EMAIL PROTECTED] skype : erwinkerk hello : vlits ------------------------------------------------------------------------

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



Reply via email to