The following JavaScript outputs nothing (not even "false"), and indeed stops any other JavaScript on the page from running:
var pattern = new RegExp(/[_-%]/);
document.write(pattern.test("foo"));
What is it about this regular expression that does this? If any one of the three characters (_, -, or %) is removed, everything works normally. And if the order of the three characters is changed at all, everything works normally.
%and_, it will work, but probably not as you expect (%is ASCII 45 and_is ASCII 137). – Reid May 14 '11 at 3:19