-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJava-Regex.java
More file actions
21 lines (16 loc) · 762 Bytes
/
Java-Regex.java
File metadata and controls
21 lines (16 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.Scanner;
class Solution{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
while(in.hasNext()){
String IP = in.next();
System.out.println(IP.matches(new MyRegex().pattern));
}
}
}
//Write your code here
class MyRegex{
String pattern = "([0][0][0]|([0][0]|)[\\d]|([0]|)[\\d][\\d]|[1][\\d][\\d]|[2][0-4][\\d]|[2][5][0-5])."+"([0][0][0]|([0][0]|)[\\d]|([0]|)[\\d][\\d]|[1][\\d][\\d]|[2][0-4][\\d]|[2][5][0-5])."+"([0][0][0]|([0][0]|)[\\d]|([0]|)[\\d][\\d]|[1][\\d][\\d]|[2][0-4][\\d]|[2][5][0-5])."+"([0][0][0]|([0][0]|)[\\d]|([0]|)[\\d][\\d]|[1][\\d][\\d]|[2][0-4][\\d]|[2][5][0-5])";
}