You are viewing a single comment's thread. Return to all comments →
java solution
import java.io.*; import java.util.*; import java.util.regex.Pattern; import java.util.regex.Matcher; public class Solution { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); Pattern pattern = Pattern.compile("[1-3][0-2][xs0][30Aa][xsu][\\.,]"); Matcher matcher = pattern.matcher(scanner.next()); System.out.println(matcher.matches()); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Matching Specific Characters
You are viewing a single comment's thread. Return to all comments →
java solution