in reply to how to use "NOT" in regex
/^(?!$word1|$word2).../ [download]
/^(?!\Q$word1\E|\Q$word2\E).../ [download]