Let's say you have 3 addresses:
a@b.c b@b.c c@b.c
For the first line, @email is NULL , so it becomes "" + " a@b.c " , therefore " a@b.c " .
For the second line, @email becomes " a@b.c " + "; " + " b@b.c " , so " a@b.c ; b@b.c " .
For the last line, @email becomes " a@b.c ; b@b.c " + "; " + " c@b.c " , so " a@b.c ; b@b.c ; c@b.c " .
bdumitriu
source share