C#.NET中去掉字符串的最后一个字符
去掉后面的逗号:
string str="32,33,34,";
str.TrimEnd(',');
去掉后面的%
string ab = "abcdefg%";
string aaa = ab.TrimEnd('%');