I have a large string of HTML that I have parsed with a bunch of already formed links in it. I am looking for a quick way to get rid of all of the links to display just the text. Any help or suggestions is appreciated!Sample html string looks like this: \[code\]<A href="http://stackoverflow.com/questions/4404557/test.com">myText</A>, <A href="http://stackoverflow.com/questions/4404557/test1.com">myText</A>, <A href="http://stackoverflow.com/questions/4404557/test2.com">myText</A>, <A href="http://stackoverflow.com/questions/4404557/differenttesturl.com">myText</A>, <A href="http://stackoverflow.com/questions/4404557/test0.com">myText</A>\[/code\]I want the HTML to look like this when it's done:myText, myText, myText, myText, myTextI'm using C# on an ASP.NET page and have the HTML stored as a STRING, Thanks.