Email or username:

Password:

Forgot your password?
3 comments
Michael

@ivory am I doing something wrong here? "/i" should be case insensitive

Ivory by Tapbots :emoji_wink:

@mi That doesn't work. If you use regex101 to test it, it fails completely. You have to do this: (?i)more

Michael

@ivory that works, thanks :)
Maybe I’m misunderstanding something, but the flags on regex101 are shown at the end, aren’t they? If I copy this one, I get "/more/i" (which afaik then applies to the entire regex).

But either way, "(?i)" works just as well, so thanks :)

Go Up