All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hotrod.utils.JUtils Maven / Gradle / Ivy

package org.hotrod.utils;

public class JUtils {

  // escapes:
  // * \ for \\
  // * double quotes for \"

  public static String escapeJavaString(final String txt) {
    return txt == null ? null : txt.replace("\\", "\\\\").replace("\"", "\\\"");
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy