We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Useful for testing: Regex101
Remove any space between words, even new lines: (^\W*|\W*$)
(^\W*|\W*$)
Match anything except specific words: ^((?!badword1|badword2).)*$
^((?!badword1|badword2).)*$