Skip to content

Instantly share code, notes, and snippets.

@judepereira
Created September 4, 2023 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save judepereira/f9252d8505d9da3f6cb5963ea2f576e1 to your computer and use it in GitHub Desktop.
Save judepereira/f9252d8505d9da3f6cb5963ea2f576e1 to your computer and use it in GitHub Desktop.
public static String escapeString(Object o) {
if (o == null) {
return null;
}
String str = o.toString();
if (str.contains("\\")) {
str = str.replace("\\", "\\\\");
}
if (str.contains("\"")) {
str = str.replace("\"", "\\\"");
}
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment