반응형
startsWith
문자열이 특정 문자열로 시작 되는지를 확인하는 함수이다.
바로 예제를 보면 아래와 같다.
String startsWithT = "TheNiceSj"; System.out.println( startsWithT.startsWith("The") ); // true System.out.println( startsWithT.startsWith("T") ); // true System.out.println( startsWithT.startsWith("TheNiceS") );// true System.out.println( startsWithT.startsWith(" T") );// false |
앞에 공백이 있으면 구분이 안된다.
비슷한 내용으로
endsWith
문자열이 특정 문자열로 끝나는지 확인하는 함수이다.
String startsWithT = "TheNiceSj"; System.out.println( startsWithT.endsWith("j") ); // true System.out.println( startsWithT.endsWith("Sj") );// true System.out.println( startsWithT.endsWith("heNiceSj") );// true System.out.println( startsWithT.endsWith("Sj ") );// false |
역시 공백은 존재해서는 안된다.
반응형
'IT > Java' 카테고리의 다른 글
args 에 대해(arguments) (7) | 2024.07.19 |
---|---|
[Error] Fatal error compiling: error: release version 21 not supported (16) | 2024.07.13 |
[Error] No Default Constructor For Entity (8) | 2024.07.05 |
스트러츠란?(STRUTS) (15) | 2024.07.01 |
Spring Batch 파일 읽기_추가 설정(파일 인코딩, 첫행 무시, 에러 시 패스) (26) | 2024.06.19 |
댓글