I\'ve been trying to create a regex which would ignore the casing.
This is the regex i am trying to use:
/^[A-Za-z0-9._+\\-\\\']+@+test.com$/;
Flags go at the end.
/regex/i
i is for case-Insensitive (or ignore-case)
i