반응형
java 자바 substring 문자열 자르기 뒤에서부터 자르기
String temp = "가나다라마바사";
* 첫번째 자리
System.out.println(temp.substring(0));
=> 가
* 두번째 자리
System.out.println(temp.substring(1));
=> 나
* 두번째 자리부터 세번째 자리까지
System.out.println(temp.substring(1, 3));
=> 나다
* 마지막 두번째 자리부터 마지막자리까지
System.out.println(temp.substring(temp.length()-2, temp.length()));
=> 바사
반응형
'Programing > JAVA' 카테고리의 다른 글
java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver 원인/해결방법 (0) | 2016.05.12 |
---|---|
java.lang.ClassNotFoundException 에러 해결방법 (0) | 2016.05.04 |
톰캣 Tomcat 메모리설정 java.lang.OutOfMemoryError : PermGen space 에러 (2) | 2016.04.15 |
tomcat cmd 명령프롬프트 창에서 실행 로그 확인 톰캣 로그 확인 (0) | 2015.12.11 |
Can not find the tag library descriptor... 에러 해결 방법 taglibs에러 해결법 (0) | 2015.11.26 |
댓글