com.talk2object.common.StringUtil Maven / Gradle / Ivy
The newest version!
package com.talk2object.common;
public class StringUtil {
public static String removeCR(String s) {
return s.replaceAll("\n", "");
}
public static String upperFirstLetter(String s) {
return s.substring(0, 1).toUpperCase() + s.substring(1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy