У меня есть строка, которая содержит несколько IP-адресов, например:
String header = "Received: from example.google.com ([192.168.0.1]) by example.google.com ([192.168.0.2]) with mapi; Tue, 30 Nov 2010 15:26:16 -0600";
Я хочу использовать регулярное выражение, чтобы получить оба IP-адреса из этого.До сих пор мой код выглядит так:
public String parseIPFromHeader(String header) {
Pattern p = Pattern.compile("\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b");
Matcher m = p.matcher(header);
boolean matchFound = m.find();
System.out.println(matchFound);
if (matchFound) {
// Get all groups for this match
for (int i=0; i<=m.groupCount(); i++) {
// Get the group's captured text
String groupStr = m.group(i);
// Get the group's indices
int groupStart = m.start(i);
int groupEnd = m.end(i);
// groupStr is equivalent to
System.out.println(header.subSequence(groupStart, groupEnd));
}
}
}
, но я никогда не получаю совпадения.Я правильно подхожу к этому?Спасибо