日期:2014-05-17 浏览次数:20397 次
string s = "1,2,3,4,5,6,"; s = s.TrimEnd(',');
------解决方案--------------------
string.LastIndexOf(',')
取出最后一个,的位置
在Substring
------解决方案--------------------
TrimEnd(','); //去除字符尾部的逗号
TrimStart(','); //去除字符头部的逗号
Trim(','); //去除字符首尾的逗号