"'[b](.*?)[/b]'is",
Is my current RegEx working. But I want to change the [] to be <> instead. But it doesn't work... What more then just the [] do I need to change.
Try ~ as a delimiter instead
~
preg_match("~<b>(.*?)</b>~is", $text, $b);
1.4m articles
1.4m replys
5 comments
57.0k users