7万
861
32万
论坛元老
复制代码 代码如下:/** * 小时:分钟的正则表达式检查<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(); }
使用道具 举报
3
2万
301
中级会员
4
316
0
1万
68
注册会员
60
100
本版积分规则 发表回复 回帖后跳转到最后一页
手机版|小黑屋|网站地图|源码论坛 ( 海外版 )
GMT+8, 2024-11-23 01:28 , Processed in 0.280032 second(s), 26 queries .
Powered by Discuz! X3.4
Copyright © 2001-2020, Tencent Cloud.