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

pl.jalokim.propertiestojson.util.StringToJsonStringWrapper Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package pl.jalokim.propertiestojson.util;

public class StringToJsonStringWrapper {

    private static final String JSON_STRING_SCHEMA = "\"%s\"";

    public static String wrap(String textToWrap) {
        return String.format(JSON_STRING_SCHEMA, textToWrap.replace("\"","\\\""));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy