Forum Moderators: open
Sample Input:
bleh.wrawr@test.com;wrawr.bleh@test.comwrawr.bleh@test.com
-------
Criteria to be met:
1) If there is only one '@' is present then I assume it is only one email address and run it through my address validater
2) If more then one '@' is present then there must be a ';' between each them (aka @*;*@ where * = any amount/type of character)
3) If there is more then one instance then the check must ensure that there is always a ';' between each pair of '@'
-------
Examples:
a@b.c = true
a@b.cd@e.f = false
a@b.c;d@e.f = true
a@b.c;d@e.fg.h@j = false
a@b.cd@e.f;g@h.i = false
a@b.c;d@e.f;g@h.i = true
Thanks in advance.
;)