“Numer Regex Java” Kod odpowiedzi

Numer Regex Java

String regex = "[0-9]+"; // or String regex = "\\d+";
String str = "123";
System.out.println(str.matches(regex)); // true
str = "12a";
System.out.println(str.matches(regex)); // false
Wissam

Liczba meczów Regex Java

// Java 9+
long matches = matcher.results().count();

// Java 8-
int count = 0;
while (matcher.find())
{
	count++;
}
Amused Angelfish

Odpowiedzi podobne do “Numer Regex Java”

Pytania podobne do “Numer Regex Java”

Więcej pokrewnych odpowiedzi na “Numer Regex Java” w Java

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

Przeglądaj inne języki kodu