AN-net
11-04-2004, 05:07 PM
well i heard preg_replace is a very hard thing in php but i thought i would give a swing at it, i did with a simple phrase already and it worked great but i cant get this one to work with variables and what nots..
heres my error:
Warning: Compilation failed: missing terminating ] for character class at offset 21 in /home2/animati/public_html/dev/testphp.php on line 24
my php
$string= "black";
$pattern= "#/[bold\](.*)\[/bold\]#esiU";
$replace= "<b>$1</b>";
echo preg_replace($pattern, $replace, $string);
heres my error:
Warning: Compilation failed: missing terminating ] for character class at offset 21 in /home2/animati/public_html/dev/testphp.php on line 24
my php
$string= "black";
$pattern= "#/[bold\](.*)\[/bold\]#esiU";
$replace= "<b>$1</b>";
echo preg_replace($pattern, $replace, $string);