iP的正则表达式

前端之家收集整理的这篇文章主要介绍了iP的正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

iP的正则表达式:^((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]|[*])\.){3}(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]|[*])$

解释下

\d: 匹配1位 0-9

[1-9]\d: 匹配 2位 10-99

1\d\d: 匹配 3位 100 - 199

2[0-4]\d: 匹配 3位 200-249

25[0-5]: 匹配 3位 250-255

[*] : 匹配*

/** 
 * 判断是否是IP地址 
 * @param str 
 * @return 
 */  
public static boolean isIPAdress( String str )  
{  
    Pattern pattern = Pattern.compile( "^((\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5]|[*])\\.){3}(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5]|[*])$" );  
    return pattern.matcher( str ).matches();  
}  
原文链接:https://www.f2er.com/regex/361568.html

猜你在找的正则表达式相关文章