如何在 C# 中获取字符串中的最后 4 个字符?


首先,设置字符串 -

string str = "Football and Tennis";

现在,使用 substring() 方法获取最后 4 个字符 -

str.Substring(str.Length - 4);

让我们看看完整的代码 -

示例

 在线演示

using System;
public class Demo {
   public static void Main() {
      string str = "Football and Tennis";
      string res = str.Substring(str.Length - 4);
      Console.WriteLine(res);
   }
}

输出

nnis

更新于: 2020 年 6 月 22 日

2K+ 浏览量

开启你的职业 生涯

完成课程获取认证

开始学习
广告