You are viewing a single comment's thread. Return to all comments →
while(testCases>0){
String pattern = in.nextLine(); //Write your code try{ Pattern.compile(pattern); System.out.println("Valid"); }catch(PatternSyntaxException e){ System.out.println("Invalid"); } testCases--; }
Seems like cookies are disabled on this browser, please enable them to open this website
Pattern Syntax Checker
You are viewing a single comment's thread. Return to all comments →
while(testCases>0){