You are viewing a single comment's thread. Return to all comments →
//Write your code here class MyRegex{ public String pattern;
public MyRegex() { this.pattern = "^(\\d{1,2}\\.|[01]\\d{2}\\.|2[0-4]\\d\\.|25[0-5]\\.){3}(\\d{1,2}|[01]\\d{2}|2[0-4]\\d|25[0-5])$"; }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Regex
You are viewing a single comment's thread. Return to all comments →
//Write your code here class MyRegex{ public String pattern;
}