I have a string that is returned from a WebAPI call that looks like this:
(
"username@domain.com"
)
As a workaround, I am trying to extract just the email address i.e. username@domain.com
I am not sure what the best approach to do this is as I'm extracting the data within the parenthesis and the quotations.
Any pointers (no pun intended) are appreciated.