반응형
.startwith() 과 .contains()는 boolean 타입으로
해당 String 변수를 포함하고 있는지 확인하는 .contains() 메소드와
해당 String 변수로 시작하는지 확인하는 .startwith() 메소드가 있다.
startwith()은
startwith(String)과, startwith(String, beginIndex)
두 가지의 형태가 있으며, 시작하는 인덱스 번호를 입력할 수 있다.
public class StartWith {
public static void main(String[] args) {
String str1 = "redirect:.java";
System.out.println(str1.contains("java"));
System.out.println(str1.startsWith("redirect:", 0));
}
}
출력값
true
true
그러나 인덱스 값을 1로 변경하면 값이 false로 바뀐다.
반응형
'Java' 카테고리의 다른 글
Dispatcher방식과 Redirect 방식 (0) | 2020.12.04 |
---|---|
RequestDispatcher란? (0) | 2020.12.04 |
.substring() 메소드 (0) | 2020.12.04 |
hashCode()와 equals() (0) | 2020.12.04 |
hashCode()와 equals() (0) | 2020.12.04 |