명품 자바 Programming
Chapter6 Ex5
Q :
"They is students." 스트링에서 "is"를 "are"로 대치하는 StringSub 클래스를 작성하라. 실행은 다음과 같이 한다.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | package chap6ex; public class StringSub { public StringSub(){} public String replaceStr(String str) { String result; result = str.replace("is", "are"); return result; } public static void main(String[] args) { String str = "They is students"; StringSub strSub = new StringSub(); String result = strSub.replaceStr(str); System.out.println(result); } } | cs |
Key Point
String 다루기
유용하셨다면 공감 버튼 ↓ 눌러주세요!
728x90
'# Language > Java' 카테고리의 다른 글
명품 JAVA 프로그래밍 6장 8번 (0) | 2018.07.21 |
---|---|
명품 JAVA 프로그래밍 6장 7번 (0) | 2018.07.21 |
명품 JAVA 프로그래밍 6장 6번 (0) | 2018.07.21 |
명품 JAVA 프로그래밍 6장 4번 (0) | 2018.07.21 |
명품 JAVA 프로그래밍 6장 3번 (0) | 2018.07.21 |
명품 JAVA 프로그래밍 6장 2번 (0) | 2018.07.21 |
명품 JAVA 프로그래밍 6장 1번 (0) | 2018.07.21 |