首页 > Web开发 > 详细

javascript 小时:分钟的正则表达式

时间:2016-01-03 00:02:18      阅读:253      评论:0      收藏:0      [点我收藏+]

复制代码 代码如下:

/**
* 小时:分钟的正则表达式检查<br>
* <br>
* @param pInput 要检查的字符串
* @return boolean 返回检查结果
*/
public static boolean isUrl (String pInput) {
if(pInput == null){
return false;
}
String regEx = " ^([0-1]{1}\d|2[0-3]):([0-5]\d)$";

Pattern p = Pattern.compile(regEx);
Matcher matcher = p.matcher(pInput);
return matcher.matches();
}

javascript 小时:分钟的正则表达式

原文:http://www.jb51.net/article/16659.htm

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!