I have a String, which contains a list of mail addresses like so:
Dim address1 As String = """Merkel, Angela"" <[email protected]>, ""Peter Altmeyer"" <[email protected]>"
what I'm trying to archieve is to separate the String at the comma. I figure I need Regexp.Split therefore, but I don't have a clue, what exactly I have to do to get the output array of
"Merkel, Angela" <[email protected]>
"Peter Altmeyer" <[email protected]>
I'm especially confused by the double quotation mark "" to escape the quotation mark. Is this also escaped like so in the regular expression?