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

com.github.leeonky.util.StringUtil Maven / Gradle / Ivy

The newest version!
package com.github.leeonky.util;

class StringUtil {
    static String unCapitalize(String str) {
        return str.isEmpty() ? str : str.toLowerCase().substring(0, 1) + str.substring(1);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy