How do I particularly separate email from paragraph?

Find a @ position
Walk back, and go comparing (each letter) if it equals space. " "
Take this position from space + 1
Now. from the @ position, move forward comparing (each letter) if it equals space " ".
Take the position of the space -1
You have the start position and the end position of the string.
Remove this string from the main string.

2 Likes