I was hoping someone could help me with this regular expression...
$pattern = "/\[b\](.*)\[\/b\]/Ui";
$message = preg_replace($pattern, "<B>\\1</B>", $message);
The above works for:
[b]bold text[/b]
But does not work for:
[b]bold text
w/ newline[/b]
Can anyone help me sort this little issue out?
Many thanks!!
Nick
--
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]