반응형
String 메서드
2. endsWith()
: 스트링형의 뒷문장들을 비교하는 메서드 입니다.
: 비교하여 일치하면 true 일치하지 않으면 false를 반환한다.
java api 문서
boolean
endsWith(String suffix)
Tests if this string ends with the specified suffix.
사용방법
sub = ".txt";
bool = str.endsWith(sub);
if (bool)
System.out.println("텍스트 파일입니다.");
else
System.out.println("텍스트 파일이 아닙니다.");
728x90
반응형