I'm sending an e-mail from my application. It's primarily in html format and I'm using a regex to strip out the html tags for a plain-text alternative view (using @"<(.|\n)*?>")
. I want to replace the <a>
hyperlink tag with a plain-text version of the href
address.
I can only seem to find information about converting the other way.