如何去掉字符串中的字符?比如字符串string str1="(A)ABC"如何去掉前面的(A)[解决办法]
string str1 = "(A)ABC"; str1.Replace("(A)", "");