All pastes #2118117 Raw Edit

Untitled

public text v1 · immutable
#2118117 ·published 2012-02-11 19:45 UTC
rendered paste body
public static string StripHtml(string html, bool allowHarmlessTags)
{
if (html == null || html == string.Empty)
return string.Empty;
if (allowHarmlessTags)
return System.Text.RegularExpressions.Regex.Replace(html, "", string.Empty);
return System.Text.RegularExpressions.Regex.Replace(html, "<[^>]*>", string.Empty);
}