<?php

$string = "This is a string with a nowiki tag: '''<nowiki>[[blah blah]]</nowiki>'''\n";
$html_comment = "Here's something with an html comment: <!-- this is a comment -->\n";

$pattern = "/<(nowiki|gallery|pre)(\s+[^>]*?|\s*?)(\/?>)|<(!--)/i";

print_r(preg_split($pattern, $string, 2, PREG_SPLIT_DELIM_CAPTURE));
echo "<br/><br/>";
print_r(preg_split($pattern, $html_comment, 2, PREG_SPLIT_DELIM_CAPTURE));

?>
