79626455

Date: 2025-05-17 11:06:50
Score: 2.5
Natty:
Report link

public static string StripHtml(string input) { return string.IsNullOrEmpty(input) ? input : System.Web.HttpUtility.HtmlDecode(System.Text.RegularExpressions.Regex.Replace(input, "<.*?>", String.Empty)); }

this worked for my problem

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dhruv Shah