Need some quick C# regex help
Posted
by Steven
on Stack Overflow
See other posts from Stack Overflow
or by Steven
Published on 2010-05-20T22:20:00Z
Indexed on
2010/05/20
22:30 UTC
Read the original article
Hit count: 194
I have this html:
<a href="http://www.site.com/">This is the content.</a>
I just need to get rid of the anchor tag html around the content text, so that all I end up with is "This is the content".
Can I do this using Regex.Replace?
© Stack Overflow or respective owner