-2

can anyone help me with the following:

I need email validation regex epression for combination of chars, numbers and only one @ symbol and not more than two . (Dots).

1 Answers1

0

Try this link. Its a good start for learning regular expressions. Something like [\w-.]+@([\w-]+.)+[\w-]{2,4} should do the trick

Ognjen Babic
  • 727
  • 1
  • 4
  • 14