Possible Duplicate:
What is the best regular expression for validating email addresses?

I am a new user in stackOverflow. I have a query which is related with regular expression in PERL. I want to know the correct regex for the email. Example is also given below to create a regex.

for example, abc123@yahoo.co.in or abc345@gmail.com

link|improve this question
feedback

closed as exact duplicate by Alan Haggai Alavi, Sarfraz, RC., mu is too short, Flimzy Dec 2 '11 at 7:21

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Email validation is really complex task so i recommend to use this code:

  use Email::Valid;
  print (Email::Valid->address('maurice@hevanet.com') ? 'yes' : 'no');
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.