-2

I have a big list of email addresses in a format that I can't use for script them, I need help to build a regex that can match the email addresses.

name1 surname1 <name1.surname1@domain.com>
name2 surname2 <name2.surname2@domain.com>
pedaleo
  • 401
  • 2
  • 7
  • 20

1 Answers1

0

The regex query to achieve it is

\<(.*?)\>
Abhishek Gurjar
  • 7,426
  • 10
  • 37
  • 45
pedaleo
  • 401
  • 2
  • 7
  • 20