public static void Main()
var input = "There, are an awful, awfully, large amount of commas in this, sentence, many are wrong.";
Console.WriteLine(RemoveAllButFirst(input,","));
public static string RemoveAllButFirst(string s, string stuffToRemove)
var locationOfStuff = s.IndexOf(stuffToRemove);
var splitLocation = locationOfStuff + stuffToRemove.Length;
return s.Substring(0, splitLocation) + (s.Substring(splitLocation)).Replace(stuffToRemove,"");