1
2
3
4
5
6
7
8
9
|
/// <summary>
/// Removes the HTML Code.
/// </summary>
/// <param name="Text">The text.</param>
/// <returns>The string without HTML Code</returns>
private string StripHTML(string inputString)
{
return Regex.Replace(inputString, "<.*?>", string.Empty);
}
|