May 2009 - Posts

0
Comments

Remove HTML from string with regular expression by stoian bucovich

It's really simple to do that with just a few lines of code. Here is how to: Private Function RemoveHTML( ByVal str As String ) As String Dim RegExp As String = "<[^>]*>" Dim R As New Regex(RegExp) Return R.Replace(str, " " ) End Function And...
More Posts