> hard to filter
regex name filter:
^(?!(Anonymous|Notables|Q)$)
translation:
^ <- starts with
?! <- anything that IS NOT
"Anonymous" OR "Notables" OR "Q"
$ <- then it ends with nothing else
> hard to filter
regex name filter:
^(?!(Anonymous|Notables|Q)$)
translation:
^ <- starts with
?! <- anything that IS NOT
"Anonymous" OR "Notables" OR "Q"
$ <- then it ends with nothing else