Julien Cheyssial is
looking for a way to strip HTML tags, here is the function I use in
Second News:
Public Shared Function Remover(ByVal strInput As String) As String
Dim strOutput As String
strOutput = Regex.Replace(strInput, "<[^>]*>", " ")
Return strOutput
End Function
Usage: Remover(
Your string) and it returns what you expected.