int begin = myString.IndexOf('('); int end = myString.IndexOf('"'); string altered = myString.Remove(begin + 1, end - begin - 1);