Separating Text In An Email Address

A

Allen Browne

Use Instr() to locate the "@" in the string.

Use Left() to get the preceding characters, or Mid() for the later ones.
 
Top