Answers for "Java Regex : 4 Letters followed by 2 Integers"

0

Java Regex : 4 Letters followed by 2 Integers

public static boolean checkPass(String s){
    System.out.println(s); // Prints : Mypass85
    p = Pattern.compile("[A-Za-z]{4}[0-9]{2}");
    return p.matcher(s).find();
}
Posted by: Guest on September-08-2021
0

Java Regex : 4 Letters followed by 2 Integers

public static boolean checkPass(String s){
    System.out.println(s); // Prints : Mypass85
    p = Pattern.compile("[A-Za-z]{4}[0-9]{2}");
    return p.matcher(s).find();
}
Posted by: Guest on October-17-2021

Code answers related to "Java Regex : 4 Letters followed by 2 Integers"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language