标签:ram turn regex 否则 match stat static 返回 格式
/** * 验证大写字母 * * @param 待验证的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b> */ public static boolean IsUpChar(String str) { String regex = "^[A-Z]+$"; return match(regex, str); } /** * 验证小写字母 * * @param 待验证的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b> */ public static boolean IsLowChar(String str) { String regex = "^[a-z]+$"; return match(regex, str); }
标签:ram turn regex 否则 match stat static 返回 格式
原文地址:http://www.cnblogs.com/20gg-com/p/6037500.html