I need a regex for email that allows uppercase and lowercase and I want to validate with jquery .match()
. Right now I have this working for lowercase only.
^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$
I'd like one for UC and LC or a combo. Thanks for your help.