Closed jing1115 closed 2 years ago
建议 你去gittee 上下载 https://gitee.com/gz-yami/mall4j 这个类的代码 `package com.yami.shop.common.util;
import cn.hutool.core.util.StrUtil;
import java.util.regex.Pattern;
/**
@author LGH */ public class PrincipalUtil {
public static boolean isMobile(String value) { if(StrUtil.isBlank(value)) { return false; } return Pattern.matches(MOBILE_REGEXP, value); }
public static boolean isUserName(String value) { if(StrUtil.isBlank(value)) { return false; } return Pattern.matches(USER_NAME_REGEXP, value); } } `
github已经更新
建议 你去gittee 上下载 https://gitee.com/gz-yami/mall4j 这个类的代码 `package com.yami.shop.common.util;
import cn.hutool.core.util.StrUtil;
import java.util.regex.Pattern;
/**
@author LGH */ public class PrincipalUtil {
/**
/**
public static boolean isMobile(String value) { if(StrUtil.isBlank(value)) { return false; } return Pattern.matches(MOBILE_REGEXP, value); }
public static boolean isUserName(String value) { if(StrUtil.isBlank(value)) { return false; } return Pattern.matches(USER_NAME_REGEXP, value); } } `