We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
try{
Pattern.compile(pattern);
System.out.println("Valid");
}
catch (PatternSyntaxException pe){ //patternSytaxException Handled.
System.out.println("Invalid");
}
testCases --; //Reduce value by 1
}
// Note: In this problem, a regex is only valid if you can compile it using the Pattern.compile method.
Cookie support is required to access HackerRank
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 →