EDIT: @[email protected] shared something that might help to circumvent this shit:
Contained in these parentheses is a zero-width joiner: ()
Basically, add those to whatever you feel that might be filtered out, then remove the parentheses. The content inside the parentheses is invisible, but it screws with regex rules.
That zero-width hack doesn’t seem to work:
len("Le()mmy") 8 len("(Lemmy)") 7
Wait how high am I? The example on top returns a length one higher than the example on bottom, because it has a non-printable character in there right?
Yes.
You said it doesn’t work, then showed an example of it working? I guess I’m still high.