English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Kind Ausdruck/Der Metasymbol " \ z" passt zum Ende der Zeichenkette.}}
import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample { public static void main( String args[] ) { String regex = "w3codebox\\z"; String input = "Hi how are you welcome to the w3codebox"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; while(m.find()) { count++; } System.out.println("Anzahl der Übereinstimmungen: "+count); } }
Ausgabenergebnis
Anzahl der Übereinstimmungen: 1
Der folgende Java-Programm überprüft, ob die gegebene Eingabe eine Ziffer am Ende hat.
import java.util.regex.Matcher; import java.util.regex.Pattern; public class Data { public static void main( String args[] ) { String regex = "[0-9]\\z"; String input = "Hi how are you \n this is sample text \n this is third line" 554"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); if(m.find()) { System.out.println("Gegebene Eingabe endet mit einer Ziffer"); } else { System.out.println("Gegebene Eingabe endet nicht mit einer Ziffer"); } } }
Ausgabenergebnis
Gegebene Eingabe endet mit einer Ziffer