I want to remove a comma separated value from the string..
suppose I have a string like this
string x=\"r, v, l, m\"
and i want to
String input = "r, v, l, m, "; string itemToReplace = "v, "; string output = input.Replace(itemToReplace, string.Empty)