字符串工具类
public class StringUtils { private StringUtils() { throw new UnsupportedOperationException("发现异常......"); } /** * 判断字符串是否为null或长度为0 * @param s 需校验的字符串 * @return true 为空 or false 不为空 */ public static boolean isEmpty(CharSequence s) { return s == null || s.length() == 0; } /** * 判断字符串是否为null或全为空格 * @param s 需校验的字符串 * @return true null或全空格 or false 不为null且不全空格 */ public static boolean isSpace(String s) { return (s == null || s.trim().length() == 0); } /** * 判断两字符串是否相等 * @param a 需校验的字符串a * @param b 需校验的字符串b * @return true 为相等 or false 为不相等 */ public static boolean equals(CharSequence a, CharSequence b) { if (a == b) return true; int length; if (a != null && b != null && (length = a.length()) == b.length()) { if (a instanceof String && b instanceof String) { return a.equals(b); } else { for (int i = 0; i < length; i++) { if (a.charAt(i) != b.charAt(i)) return false; } return true; } } return false; } /** * 判断两字符串忽略大小写是否相等 * @param a 需校验的字符串a * @param b 需校验的字符串b * @return true: 相等 false: 不相等 */ public static boolean equalsIgnoreCase(String a, String b) { return (a == b) || (b != null) && (a.length() == b.length()) && a.regionMatches(true, 0, b, 0, b.length()); } /** * null转为长度为0的字符串 * @param s 需转的字符串 * @return s为null转为长度为0字符串,否则不改变 */ public static String null2Length0(String s) { return s == null ? "" : s; } /** * 返回字符串长度 * @param s 需处理的字符串 * @return null返回0,其他返回自身长度 */ public static int length(CharSequence s) { return s == null ? 0 : s.length(); } /** * 首字母大写 * @param s 需转的字符串 * @return 首字母大写字符串 */ public static String upperFirstLetter(String s) { if (isEmpty(s) || !Character.isLowerCase(s.charAt(0))) return s; return String.valueOf((char) (s.charAt(0) - 32)) + s.substring(1); } /** * 首字母小写 * * @param s 需转的字符串 * @return 首字母小写字符串 */ public static String lowerFirstLetter(String s) { if (isEmpty(s) || !Character.isUpperCase(s.charAt(0))) { return s; } return String.valueOf((char) (s.charAt(0) + 32)) + s.substring(1); } /** * 反转字符串 * @param s 需反转的字符串 * @return 反转字符串 */ public static String reverse(String s) { int len = length(s); if (len <= 1) return s; int mid = len >> 1; char[] chars = s.toCharArray(); char c; for (int i = 0; i < mid; ++i) { c = chars[i]; chars[i] = chars[len - i - 1]; chars[len - i - 1] = c; } return new String(chars); } /** * 转化为半角字符 * @param s 需转的字符串 * @return 半角字符串 */ public static String toDBC(String s) { if (isEmpty(s)) { return s; } char[] chars = s.toCharArray(); for (int i = 0, len = chars.length; i < len; i++) { if (chars[i] == 12288) { chars[i] = ' '; } else if (65281 <= chars[i] && chars[i] <= 65374) { chars[i] = (char) (chars[i] - 65248); } else { chars[i] = chars[i]; } } return new String(chars); } /** * 转化为全角字符 * @param s 需转的字符串 * @return 全角字符串 */ public static String toSBC(String s) { if (isEmpty(s)) { return s; } char[] chars = s.toCharArray(); for (int i = 0, len = chars.length; i < len; i++) { if (chars[i] == ' ') { chars[i] = (char) 12288; } else if (33 <= chars[i] && chars[i] <= 126) { chars[i] = (char) (chars[i] + 65248); } else { chars[i] = chars[i]; } } return new String(chars); } } 正则表达式工具类
import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import static com.blankj.utilcode.utils.ConstUtils.*; public class RegexUtils { //正则:手机号(简单) public static final String REGEX_MOBILE_SIMPLE = "^[1]\\d{10}$"; //正则:手机号(精确) public static final String REGEX_MOBILE_EXACT = "^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|(147))\\d{8}$"; //正则:电话号码 public static final String REGEX_TEL = "^0\\d{2,3}[- ]?\\d{7,8}"; // 正则:身份证号码15位 public static final String REGEX_ID_CARD15 = "^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$"; // 正则:身份证号码18位 public static final String REGEX_ID_CARD18 = "^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}([0-9Xx])$"; // 正则:邮箱 public static final String REGEX_EMAIL = "^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$"; // 正则:URL public static final String REGEX_URL = "[a-zA-z]+://[^\\s]*"; // 正则:汉字 public static final String REGEX_ZH = "^[\\u4e00-\\u9fa5]+$"; //正则:用户名,取值范围为a-z,A-Z,0-9,"_",汉字,不能以"_"结尾,用户名必须是6-20位 public static final String REGEX_USERNAME = "^[\\w\\u4e00-\\u9fa5]{6,20}(? 0 && Pattern.matches(regex, input); } /** * 获取正则匹配的部分 * @param regex 正则表达式 * @param input 需匹配的字符串 * @return 正则匹配的部分 */ public static ListgetMatches(String regex, CharSequence input) { if (input == null) return null; List matches = new ArrayList<>(); Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(input); while (matcher.find()) { matches.add(matcher.group()); } return matches; } /** * 获取正则匹配分组 * @param input 需分组的字符串 * @param regex 正则表达式 * @return 正则匹配分组 */ public static String[] getSplits(String input, String regex) { if (input == null) return null; return input.split(regex); } /** * 替换正则匹配的第一部分 * @param input 要替换的字符串 * @param regex 正则表达式 * @param replacement 代替者 * @return 替换正则匹配的第一部分 */ public static String getReplaceFirst(String input, String regex, String replacement) { if (input == null) return null; return Pattern.compile(regex).matcher(input).replaceFirst(replacement); } /** * 替换所有正则匹配的部分 * @param input 要替换的字符串 * @param regex 正则表达式 * @param replacement 代替者 * @return 替换所有正则匹配的部分 */ public static String getReplaceAll(String input, String regex, String replacement) { if (input == null) return null; return Pattern.compile(regex).matcher(input).replaceAll(replacement); } }