반응형
String 메서드
1. startsWith()
- 스트링형의 앞문장들을 비교하는 메서드 입니다.
- 비교하여 일치하면 true 일치하지 않으면 false를 반환한다.
Java api 문서
boolean startsWith(String prefix)
Tests if this string starts with the specified prefix.
boolean startsWith(String prefix, int toffset)
Tests if the substring of this string beginning at the specified index starts with the specified prefix.
str = "Sing.mp3";
String sub = "Si";
boolean bool = str.startsWith(sub);
if (bool)
System.out.println(sub + "로 시작합니다.");
else
System.out.println(sub + "로 시작하지 않습니다.");
728x90
반응형