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

eu.xenit.apix.utils.PrintUtils Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.utils;

public class PrintUtils {

    /**
     * indent a multiline string for each line with a prefix.
     *
     * @param prefix The prefix add before each line
     * @param s The multiline string
     * @return A multiline string which is prefixed.
     */
    public static String indent(String prefix, String s) {
        return prefix + s.replaceAll("\n", "\n" + prefix);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy