Stripping out HTML tags Monday, April 14, 2003 .NET Thanks Phil for your suggestion, I will try this:Here's how I do it (the variable 'HTML' is a String containing the HTML code): Dim regEx As New Regex("<[^>]+>") Dim Text As String = regEx.Replace(HTML, "")