I have input in this form
test@test.com
and\or in this form
test@test.com;test2@test.com
or
test@test.com;test2@test.com;test3@test.com
I should tokenize all, in a String array that contains only a single email for each cell without any separator
;
You don’t want to tokenize, just use
split:And it will work for all cases.