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.
As others have said, first split on
;
, then validate the addresses individually. If you are going to use a regex to validate email, at least use one that's been at least vaguely tested against both good and bad examples, such as those on fightingforalostcause.net , listed in this project, or discussed in this definitive question, of which this question is effectively a duplicate.