C#中删除字符串最后一个字符串的几种方式
Posted Hubbert
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中删除字符串最后一个字符串的几种方式相关的知识,希望对你有一定的参考价值。
1,使用TrimEnd
例如:
string a = "a,b,c,d,e,f,"; a = a.TrimEnd(‘,‘); //移除最后的逗号
注意:使用TrimEnd移除的时候,如果传递的是字符型数组参数。移除的是字符型数组中的每一个字符,而不是整体。
string s = " from table union all "; s = s.Trim().TrimEnd("union all".ToCharArray());
这个结果是from tbe,而不是from table
2,使用Substring进行截取
string a = "a,b,c,d,e,f,"; a = a.Substring(0, a.Length - 1);
3,使用Remove移除
string a = "a,b,c,d,e,f,"; a = a.Remove(a.Length-1,1);
以上是关于C#中删除字符串最后一个字符串的几种方式的主要内容,如果未能解决你的问题,请参考以下文章