Answers for "remove word from string from startswith c#"

C#
2

c# remove word from string

public static string RemoveHTML(string text)
{
    text = text.Replace(" ", " ").Replace("<br>", "\n").Replace("description", "").Replace("INFRA:CORE:", "")
        .Replace("RESERVED", "")
        .Replace(":", "")
        .Replace(";", "")
        .Replace("-0/3/0", "");
        var oRegEx = new System.Text.RegularExpressions.Regex("<[^>]+>");
        return oRegEx.Replace(text, string.Empty);
}
Posted by: Guest on August-25-2020

Code answers related to "remove word from string from startswith c#"

C# Answers by Framework

Browse Popular Code Answers by Language