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

mboog.generator.util.MBGStringUtil Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package mboog.generator.util;

/**
 * @author LiYi
 */
public abstract class MBGStringUtil {

    /**
     * 获取类simple name
     *
     * @param fullClassName fullClassName
     * @return String
     */
    public static String shortClassName(String fullClassName) {
        if (fullClassName != null) {
            return fullClassName.replaceAll("(.*\\.)+(.*)", "$2");
        }
        return fullClassName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy