////////////////substring
String jumin = "901224-2467139";
String month = jumin.substring(2,4); //시작~끝점의 앞까지 가져온다.
String day = jumin.substring(4,6);
System.out.println("당신의 생일은 "+month+"월"+day+"일 입니다.");
===================결과값====================
//////////////////trim
String data = " Lee "; //앞뒤 3칸씩 공백이 있다.
System.out.println(data.trim());
===================결과값====================
///////////////////replace
String msg1 = "abcd";
System.out.println(msg1.replace("bc", "ff"));
===================결과값====================
===================결과값====================
당신의 생일은 12월24일 입니다.
=============================================//////////////////trim
String data = " Lee "; //앞뒤 3칸씩 공백이 있다.
System.out.println(data.trim());
===================결과값====================
LEE
=============================================///////////////////replace
String msg1 = "abcd";
System.out.println(msg1.replace("bc", "ff"));
===================결과값====================
affd
============================================='개인 공부방 > JAVA' 카테고리의 다른 글
자바 간단한 채팅프로그램 (0) | 2011.11.24 |
---|---|
String으로 입력받아 int로 출력, int로 입력받아 String으로 치환 (0) | 2011.11.22 |
자바 indexOf (0) | 2011.11.21 |
자바 배열 출력의 각가지 형태 (0) | 2011.11.21 |
자바 벡터 (0) | 2011.11.21 |