C#中删除字符串最后一个字符串的几种方式
2021-06-17 09:04
标签:ble string char 传递 tab move 字符 ring nbsp 1,使用TrimEnd 例如: 注意:使用TrimEnd移除的时候,如果传递的是字符型数组参数。移除的是字符型数组中的每一个字符,而不是整体。 这个结果是from tbe,而不是from table 2,使用Substring进行截取 3,使用Remove移除 C#中删除字符串最后一个字符串的几种方式 标签:ble string char 传递 tab move 字符 ring nbsp 原文地址:https://www.cnblogs.com/hubbert123/p/10333732.html string a = "a,b,c,d,e,f,";
a = a.TrimEnd(‘,‘); //移除最后的逗号
string s = " from table union all ";
s = s.Trim().TrimEnd("union all".ToCharArray());
string a = "a,b,c,d,e,f,";
a = a.Substring(0, a.Length - 1);
string a = "a,b,c,d,e,f,";
a = a.Remove(a.Length-1,1);
文章标题:C#中删除字符串最后一个字符串的几种方式
文章链接:http://soscw.com/index.php/essay/94966.html