substring()
String str = "abcdefg";
String str2 = str.substring(0,3);
System.out.println(str2);
하게되면 str2 의 결과 abc 이다
0인덱스부터 3인덱스 전까지의 문자 추출(0포함 3전까지 문자 추출)
즉 인덱스0 <= 값 < 인덱스3 이다.
Static 변수 (0) | 2012.05.16 |
---|---|
split & StringTokenizer (0) | 2012.05.15 |
Calender.getInstance() & DAY_OF_WEEK (0) | 2012.05.09 |
indexOf (0) | 2012.05.09 |
out.clear() (0) | 2012.05.08 |
댓글 영역