码迷,mamicode.com
首页 > 其他好文 > 详细

邮政编号验证

时间:2016-11-07 09:42:45      阅读:144      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!