요르딩딩
[JAVA] startsWith(), endsWith() 본문
728x90
반응형
startsWith()
- boolean startsWIth(String prefix)
- 대상 문자열이 특정 문자열(문자)로 시작하는지 체크
- 리턴 : (boolean) true/ false값
- 공백도 문자로 취급
Public class StartsWithTest{
public static void main(String[] args){
String startsWithS ="테스트 문구입니다"
System.out.println(startsWithS.startsWith("테")); //true
System.out.println(startsWithS.startsWith("테스트")); //true
System.out.println(startsWithS.startsWith("문")); //false
System.out.println(startsWithS.startsWith(" ")); //false
}
}
endsWith()
- boolean endtsWIth(String suffix)
- 대상 문자열이 특정 문자열(문자)로 끝나는지 체크
- 리턴 : (boolean) true/ false값
- 공백도 문자로 취급
Public class StartsWithTest{
public static void main(String[] args){
String startsWithS ="테스트 문구입니다"
System.out.println(startsWithS.endsWith("다")); //true
System.out.println(startsWithS.endsWith("입니다")); //true
System.out.println(startsWithS.startsWith("테")); //false
System.out.println(startsWithS.startsWith(" ")); //false
}
}
728x90
반응형
'[Java]' 카테고리의 다른 글
[JAVA] lastIndexOf(), String.format("%02d")~ (0) | 2021.05.20 |
---|---|
[JAVA] LocalDate, System.arraycopy() (0) | 2021.05.14 |
[JAVA] Enum 구현 (2) (0) | 2021.05.06 |
[JAVA] Enum 구현 (1) (0) | 2021.05.04 |
[JAVA] Coalesce (isNull과 친척관계) (0) | 2021.04.06 |
Comments