I have to write a Regex to fetch Email Address from a sentence. I want it to be returned with Group 1 only.
Regex:
\[mailto:(.+)\]|<(.+@.+\..+)>
Input String:
Hello my Email Address is <foo@hotmail.com> - Return foo@hotmail.com as Group1.
Hello my Email Address is [mailto: foo@hotmail.com] - Return foo@hotmail.com as Group2.
I want if any of the string matches then it should be returned in Group1.
Is there any way to do this?