Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

문자열이 Java에서 특정 하위 문자열로 끝나는지 확인하는 방법은 무엇입니까?


문자열 불변의 문자 시퀀스를 나타내는 개체입니다. 한 번 생성되면 변경할 수 없습니다. java.lang.String 클래스를 사용하여 문자열 개체를 만들 수 있습니다.

endsWith()를 사용할 수 있습니다. 문자열 메소드 문자열이 특정 문자열로 끝나는지 확인하는 클래스 부울 값을 반환합니다. true 또는 거짓 .

구문

public boolean endsWith(String prefix)

예시

public class StringEndsWithSubStringTest {
   public static void main(String[] args) {
      String str = "WelcomeToTutorialsPoint";
      if(str.endsWith("Point")) {
         System.out.println("Ends with the specified word!");
      } else {
         System.out.println("Does not end with the specified word!");
      }
   }
}

출력

Ends with the specified word!