You must log in or register to comment.
Can you please tag this elon, so that our spam filters work?
It’s not practical to censor “x”
Yeah I know. It’s how I got (well forced) to see this story as well. I mean this douchebag is so rage inducing how could you NOT filter him.
What about censoring " x ". That might help filter more posts.
Yeah like x = y, not generic at all 😅Also it won’t censor “bla bla x.”
This post would require "x " though.
“^X .*$”
Sounds like it’s time for people to learn regex.
deleted by creator
Aye!
Yup:
\<[xX]\>
should do it, or whatever your regex engine’s word break character is (sometimes\b
).
Yeah I had this thought as well. How I would love to be able to create filters based on RegExs.
Something like: (?<!\w)X(?!\w) I think that might work.