|
@@ -56,6 +56,7 @@ public class HamletParser {
|
56
|
56
|
Matcher hamletUpperMatcher = hamletUpperPattern.matcher(string1);
|
57
|
57
|
String string2 = hamletUpperMatcher.replaceAll("LEON");
|
58
|
58
|
return string2;
|
|
59
|
+
|
59
|
60
|
}
|
60
|
61
|
|
61
|
62
|
public String changeHoratioToTariq(String string) {
|
|
@@ -69,6 +70,7 @@ public class HamletParser {
|
69
|
70
|
Matcher horatioUpperMatcher = horatioUpperPattern.matcher(string1);
|
70
|
71
|
String string2 = horatioUpperMatcher.replaceAll("TARIQ");
|
71
|
72
|
return string2;
|
|
73
|
+
|
72
|
74
|
}
|
73
|
75
|
|
74
|
76
|
|