c# how to remove text from string code example
Example 1: remove all text after string c#
string input = "text?here";
int index = input.LastIndexOf("?");
if (index > 0)
input = input.Substring(0, index);
Example 2: c# string remove
string myString = "Hello Grepper Developers";
string newStr = myString.Remove(5);
string newStr2 = myString.Remove(5, 8);
Example 3: 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);
}