i found this regular expression :
"^(([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5}){1,25})+)*$"
which validates a list of email like : [email protected];[email protected]
But i need to tweak it to validate in fact this sturcture :
[email protected];[email protected];
and also just one email address with this structure :
[email protected];
I also want to be able to validate email addresses containing + sign ,
for example validating :
address1@gmail;[email protected];[email protected];
as a valid list of emails.
Thank you for your help.