본문 바로가기

개인 공부방/JAVA

자바 substring, trim, replace


////////////////substring

String jumin = "901224-2467139";

String month = jumin.substring(2,4); //시작~끝점의 앞까지 가져온다.
String day = jumin.substring(4,6);
System.out.println("당신의 생일은 "+month+"월"+day+"일 입니다.");

===================결과값====================
당신의 생일은 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
=============================================