c# remove character from string code example
Example 1: c# string remove
string myString = "Hello Grepper Developers";
string newStr = myString.Remove(5);
string newStr2 = myString.Remove(5, 8);
Example 2: c# remove character from string at index
string s = "This is string";
s = s.Remove(2, 1);
string s = "This is string";
s = s.Remove(2, 2);
Example 3: c# remove specific character from string
string phrase = "this is, a string with, too many commas";
phrase = phrase.Replace(",", "");
Example 4: c# Remove String In C#
string founder = "Mahesh Chand is a founder of C# Corner";
string first25 = founder.Remove(25);
Console.WriteLine(first25);
String newStr = founder.Remove(10, 12);
Console.WriteLine(newStr);
Example 5: remove specific character from string c#
string input = "1, 2, 55";
string[] inputSplit = input.Split(", ");
Example 6: remove control characters from string c#
string input;
string output = new string(input.Where(c => !char.IsControl(c)).ToArray());