首页 > 编程 > regex > 正文

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

2020-01-20 22:23:03
字体:
来源:转载
供稿:网友

复制代码 代码如下:

/**
* 小时:分钟的正则表达式检查<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();
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表