Possible Duplicate:
What is the best regular expression for validating email addresses?
Hi I'm a newbie about the using of regular expression I have this regular expression to validate an mail but I don't understand the meaning.Someone could explain me?
mailPattern = Pattern.compile("[a-zA-Z_0-9]*[.[a-zA-Z_0-9]*]*@[a-zA-Z_0-9]*[.[a-zA-Z_0-9]*]*.[a-zA-Z]{2,3}");