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

dev.robocode.tankroyale.botapi.util.JsonUtil Maven / Gradle / Ivy

There is a newer version: 0.26.1
Show newest version
package dev.robocode.tankroyale.botapi.util;

/**
 * Utility class for JSON.
 */
public class JsonUtil {

    // Hide constructor to prevent instantiation
    private JsonUtil() {
    }

    public static String escaped(String s) {

        return s.replaceAll("\b", "\\\\b") // backspace -> \b
                .replaceAll("\f", "\\\\f") // form feed -> \f
                .replaceAll("\n", "\\\\n") // newline -> \n
                .replaceAll("\r", "") // carriage return -> remove character
                .replaceAll("\t", "\\\\t") // tab -> \t
                .replaceAll("\"", "\\\\\"") // double-quotes -> \"
                .replaceAll("\\\\", "\\\\") // single backslash (\) -> double backslash (\\)
                ;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy