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('|')会将所有的|都会清除!
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('|')会将所有的|都会清除!
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。