C# 只移除最后一个字符

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('|')会将所有的|都会清除!

  

posted @ 2016-10-11 10:08  会弹猫的吉他  阅读(2855)  评论(0编辑  收藏  举报