码迷,mamicode.com
首页 > Windows程序 > 详细

C# 只移除最后一个字符

时间:2017-02-15 16:22:16      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:substr   index   logs   bst   div   post   move   lin   line   

string str = "|||";
Console.WriteLine(str.Substring(0, str.Length - 1));
Console.WriteLine(str.Remove(str.LastIndexOf("|"), 1));
Console.WriteLine(str.Remove(str.Length - 1));
注:用str.TrimEnd(‘|‘)会将所有的|都会清除!

推荐使用  Substring;

C# 只移除最后一个字符

标签:substr   index   logs   bst   div   post   move   lin   line   

原文地址:http://www.cnblogs.com/luluit/p/6401818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!