“10 -cyfrowy numer Java Regex” Kod odpowiedzi

10 -cyfrowy numer Java Regex

String regex = "^\\d{10}$";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher("9876543210");
matcher.matches(); // returns true if pattern matches, else returns false
Tame Tortoise

Java Regex: 4 litery, a następnie 2 liczby całkowite

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();
}
Angry Albatross (Old)

Java Regex: 4 litery, a następnie 2 liczby całkowite

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();
}
Angry Albatross

Odpowiedzi podobne do “10 -cyfrowy numer Java Regex”

Pytania podobne do “10 -cyfrowy numer Java Regex”

Więcej pokrewnych odpowiedzi na “10 -cyfrowy numer Java Regex” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu