Monday, February 3, 2014

Prevent SyndicationClient showing HTML tags.

Use a regular expression to strip them out of the string



String result = Regex.Replace(htmlDocument, @"<[^>]*>", String.Empty);

No comments:

Post a Comment