Answers for "c# remove every char from string which is no number or letter"

C#
2

c# remove specific character from string

string phrase = "this is, a string with, too many commas";
phrase = phrase.Replace(",", "");
Posted by: Guest on March-01-2020
0

remove all non alphabetic characters from string c#

var cleanString = new string(dirtyString.Where(Char.IsLetter).ToArray());
Posted by: Guest on October-30-2020

Code answers related to "c# remove every char from string which is no number or letter"

C# Answers by Framework

Browse Popular Code Answers by Language