标签:ring log 字符串 false isp 字符 mat 编号 return
/** * 验证输入邮政编号 * * @param 待验证的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b> */ public static boolean IsPostalcode(String str) { String regex = "^\\d{6}$"; return match(regex, str); }
标签:ring log 字符串 false isp 字符 mat 编号 return
原文地址:http://www.cnblogs.com/20gg-com/p/6037453.html