-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathnotReplace.java
40 lines (36 loc) · 1.31 KB
/
notReplace.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Given a string, return a string where every appearance of the lowercase
* word "is" has been replaced with "is not". The word "is" should not be
* immediately preceeded or followed by a letter -- so for example the "is"
* in "this" does not count.
*/
public String notReplace(String str) {
if(str.equals("is"))
return "is not";
StringBuilder result = new StringBuilder();
int i = 0;
if(str.length() >= 3 && str.substring(0,2).equals("is") &&
!Character.isLetter(str.charAt(2))) {
result.append("is not");
i = 2;
}
while(i < str.length()) {
if(!Character.isLetter(str.charAt(i))) {
result.append(str.charAt(i));
i++;
} else if(i >= 1 && i <= str.length()-3 &&
!Character.isLetter(str.charAt(i-1)) &&
str.substring(i,i+2).equals("is") &&
!Character.isLetter(str.charAt(i+2))) {
result.append("is not");
i += 2;
} else if(i >= 1 && !Character.isLetter(str.charAt(i-1)) &&
str.substring(i).equals("is")) {
result.append("is not");
i += 2;
} else {
result.append(str.charAt(i));
i++;
}
}
return result.toString();
}