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

cz.encircled.joiner.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.22
Show newest version
package cz.encircled.joiner.util;

public class StringUtils {

    public static String uncapitalize(String str) {
        if (str == null || str.isEmpty()) {
            return str;
        }

        return Character.toLowerCase(str.charAt(0)) + str.substring(1);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy