pcre
Strip Email ID from Name
Use this regex to select all characters up to the "" bracket. It works across multiple lines. You can get an email list with only the IDs. This is the pattern it matches:
Alpha Person
Step 1 (.*) [$
Step 2 [$.$] (.*) gives you aperson@whatever.org...
Submitted by Jonathan Davidar - 9 years ago