k, Thank u. Let me try. On Thu, Dec 25, 2008 at 7:08 PM, Kaarthik Padmanabhan <[email protected]>wrote:
> Try using Regex pattern below (bolded) to strip off HTML tags:code is in
> VB.net though
>
> Dim regEx As Regex = Nothing
> Dim strippedOffString as String = String.Empty
>
> regEx = New Regex("<[^>]*>", RegexOptions.IgnoreCase)
> strippedOffString = regEx.Replace("<div>This is original string
> value.</div>", "")
>
> Kaarthik,
> http://coding-passion.blogspot.com
>
