一、驗證字符串包含小寫字母 REGEX_PATTERN = ".*[a-z]+.*";字符串
//用法co
if(StringUtils.isNotBlank(account)){字符
Pattern compile = Pattern.compile(REGEX_ACCOUNT);return
Matcher matcher = compile.matcher(account);
return matcher.matches();
}else{
return false;
}