A string은 불변의 문자 시퀀스를 나타내는 개체이며 일단 생성되면 변경할 수 없습니다. 문자열 객체는 java.lang.String 클래스를 사용하여 생성할 수 있습니다.
String 클래스의 endsWith() 메소드를 사용하여 문자열 이 부울 값 true 또는 false을 반환하는 특정 문자열 으로 끝나는지 확인할 수 있습니다.
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!
위 내용은 Java에서 문자열이 특정 하위 문자열로 끝나는지 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!