unescapeIcu method
Implementation
String unescapeIcu() {
return replaceAll(
"__‹ESC_QUOTE›__",
"'",
).replaceAll("__‹ESC_OPEN›__", "{").replaceAll("__‹ESC_CLOSE›__", "}");
}
String unescapeIcu() {
return replaceAll(
"__‹ESC_QUOTE›__",
"'",
).replaceAll("__‹ESC_OPEN›__", "{").replaceAll("__‹ESC_CLOSE›__", "}");
}