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

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


문자열 클래스는 문자열을 나타내는 데 사용할 수 있으며 Java 프로그램의 모든 문자열 리터럴은 String 클래스의 인스턴스로 구현됩니다. 문자열은 상수이며 해당 값은 변경할 수 없습니다. (불변 ) 한 번 생성되었습니다.

startsWith()를 사용할 수 있습니다. 문자열 메서드 문자열이 특정 문자열로 시작하는지 여부를 확인하는 클래스는 부울( true 또는 false)을 반환합니다.

구문

public boolean startsWith(String prefix)

예시

public class StringStartsWithSubStringTest {
   public static void main(String[] args) {
      String str = "WelcomeToTutorialsPoint";
      if(str.startsWith("Welcome")) {
         System.out.println("Begins with the specified word!");
      }
      else {
         System.out.println("Does not begin with the specified word!");
      }
   }
}

출력

Begins with the specified word!