[Java] 문자열 자르기
indexOf(), substring(), split()
indexOf()
String test = "abc-def";
int result = test.indexOf("-");
System.out.println(result);
// 결과 : 3
// 찾지 못했을 경우 -1을 반환
substring() / a 위치 부터 b 전까지
String test = "abc-def";
String result1 = test.substring(0,3);
String result2 = test.substring(4);
System.out.println(result1); // abc
System.out.println(result2); // def
split()
String test = "aaa/b/cc";
// '/'를 기준으로 문자열을 자른다.
String result[] = test.split("/");
for(int i=0 ; i<result.length ; i++){
System.out.println(result[i]);
}
// 결과 :
// aaa
// b
// cc
댓글남기기