System.out.println("Hello World".length()); // 큰따옴표 안의 글자가 몇글자인지 알려준다. 공백 포함.
System.out.println("Hello, hyeongjun...hyeongjun...bye.".replace("hyeongjun", "limchard"));
// replace는 특정 단어를 바꿔주는 명령어이다.
단어를 바꿔주는 replace에 대해 배웠다.
replace(기존 단어, 바꿀단어); 로 사용하면 기존에 있던 문장에서 특정 단어를 바꿔서 표현할 수 있다.
기본 문장을 하나 정해놓고 그때 그때 이름을 바꿀 시에 편리할 것 같다.