Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

inC# 문자열에서 마지막 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