You must log in or register to comment.
What about censoring " x ". That might help filter more posts.
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.
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.
Yup:
\<[xX]\>
should do it, or whatever your regex engine’s word break character is (sometimes\b
).deleted by creator
Aye!