# Language/Java

명품 JAVA 프로그래밍 6장 5번

명품 자바 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