- 浏览: 1583 次
- 性别:
- 来自: 大连
最近访客 更多访客>>
最新评论
-
DepthJava:
这个试试看,就不行了1925.168.10.11111
匹配IP地址的正则表达式 -
zqwfd:
benbenxiongyuan 写道看样子,没啥错。
你帮我 ...
匹配IP地址的正则表达式 -
benbenxiongyuan:
看样子,没啥错。
匹配IP地址的正则表达式
文章列表
Pattern p= Pattern.compile("([0-9]|[0-9]\\d|1\\d{2}|2[0-1]\\d|25[0-5])(\\.(\\d|[0-9]\\d|1\\d{2}|2[0-4]\\d|25[0-5])){3}");
Matcher m = p.matcher(strIP);
boolean match = m.matches();
if(!match)
{
return error;
}
不足之处欢迎指正