我已经四处寻找,但没有发现任何可行的东西。如何检查文本是否包含IP地址?我试过这个,但它不起作用:
public boolean ip(String a_text) {
String ip_filter = "\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}";
if (a_text.toLowerCase().contains(ip_filter.toLowerCase())){
return true;
}
return false;
}
答案 0 :(得分:12)
您尝试使用contains
方法Regular Expression。并且该方法不会将正则表达式作为参数。它接收一个普通的字符串。您应该尝试使用Pattern和Matcher。
以下是一个例子:
public static boolean ip(String text) {
Pattern p = Pattern.compile("^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$");
Matcher m = p.matcher(text);
return m.find();
}
编辑:我将模式更新为更合适的模式,找到here。
答案 1 :(得分:1)
是的,使用匹配,我过去使用过的更好的正则表达式是:
((0|1[0-9]{0,2}|2[0-9]?|2[0-4][0-9]|25[0-5]|[3-9][0-9]?)\.){3}(0|1[0-9]{0,2}|2[0-9]?|2[0-4][0-9]|25[0-5]|[3-9][0-9]?)
来自RegExLib
答案 2 :(得分:0)