C# 中的 TrimEnd() 方法
TrimEnd() 方法移除数组中指定的一组字符的所有尾部出现。
例如,以下字符串带有尾部 1。
String str ="234561111".
我们可以使用 TrimEnd() 方法轻松移除字符串中的上述尾部 1。
让我们看一个移除所有尾部 1 的示例。
示例
using System; class Program { static void Main() { String str ="234561111".TrimEnd(new Char[] { '1' } ); Console.WriteLine(str); } }
输出
23456
广告