String Operation to extract Email Id from a String

Hello

You can use Regex :slight_smile:

Try this Regex pattern in a “Matches” activity:
(?<=<).*(?=>)
Regex Preview here

Then use an assign activity to convert the result to a string like this.
Stringresult = MATCHESRESULT(0).tostring

Update the capital letters in the previous line with the actual output variable from the matches activity.

If you want to learn Regex - check out my Regex MegaPost for new users.

Cheers

Steve

3 Likes