当前位置: 编程技术>其它
javascript 小时:分钟的正则表达式
来源: 互联网 发布时间:2014-10-14
本文导语: 代码如下:/** * 小时:分钟的正则表达式检查 * * @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(...
代码如下:
/**
* 小时:分钟的正则表达式检查
*
* @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();
}