I have just started testing. The parser provides an email address that looks like this:
"Paul Shoemaker" <paul@clouddigital.com>
I would like it to be only this:
paul@clouddigital.com
Can I do that?
"Paul Shoemaker" <paul@clouddigital.com>
I would like it to be only this:
paul@clouddigital.com
Can I do that?
You can accomplish that with this fancy regular expression:
[^<>\s]*@[^<>\s]*
[^<>\s]*@[^<>\s]*