C# strip HTML

Date: 2020-08-10
public static String StripHTML(string s)
{
	if (String.IsNullOrEmpty(s))
		return String.Empty;	
	return Regex.Replace(s, "<.*?>", String.Empty);
}

38820cookie-checkC# strip HTML