[Java] 특정 문자로 시작하거나 끝나는지 확인하기(startsWith, endsWith)
1. 특정 문자로 시작하는지 확인 - startsWith() public boolean startsWith(String prefix) : prefix로 시작하는지 확인하여 true 반환 public boolean startsWith(String prefix, int toffset) : toffset을 문자열의 시작점으로 하여 prefix로 시작하는지 확인하여 true 반환 예시 String test = "An apple is delicious"; System.out.println(test.startsWith("An")); // true System.out.println(test.startsWith("an")); // false (대소문자 비교 O) System.out.println(test.startsW..