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

C#의 EndsWith() 메서드

<시간/>

C#의 EndsWith() 메서드는 현재 문자열 인스턴스의 끝이 지정된 문자열과 일치하는지 여부를 확인하는 데 사용됩니다.

구문

다음은 구문입니다 -

public bool EndsWith(string str)

위의 str 매개변수는 비교할 문자열입니다.

이제 EndsWith() 메서드를 구현하는 예를 살펴보겠습니다.

using System;
public class Demo{
   public static void Main(){
      bool val;
      string str = "demo$";
      val = str.EndsWith("$");
      Console.WriteLine("Return Value = "+val.ToString());
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Return Value = True

이제 EndsWith() 메서드를 구현하는 또 다른 예를 살펴보겠습니다.

using System;
public class Demo{
   public static void Main(){
      bool val;
      string str = "mytext@";
      val = str.EndsWith("#");
      Console.WriteLine("Return Value = "+val.ToString());
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Return Value = False