\"\'\\[b\\](.*?)\\[/b\\]\'is\",
Is my current RegEx working. But I want to change the [] to be <> instead. But it doesn\'t work... What more t
Try ~ as a delimiter instead
~
preg_match("~(.*?)~is", $text, $b);