English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Subausdruck/Metasymbole " \t entspricht den Tab-Tabs.
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample { public static void main(String args[]) { String regex = "\\t"; Scanner sc = new Scanner(System.in); System.out.println("Geben Sie eine Zeichenfolge ein: "); String input = sc.nextLine(); Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; while(m.find()) { count ++; } System.out.println("Anzahl der Tab-Tabs: ");+count); } }
Ergebnis ausgeben
Geben Sie eine Zeichenfolge ein: Dies ist ein Satz mit Tab-Tabs Anzahl der Tab-Tabs: 6
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample { public static void main(String args[]) { String regex = "\\t"; Scanner sc = new Scanner(System.in); System.out.println("Geben Sie eine Zeichenfolge ein: "); String input = sc.nextLine(); Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; String result = ""; while(m.find()) { result = m.replaceAll(" "); } System.out.println("Ergebnis: ");+result)); } }
Ergebnis ausgeben
Geben Sie eine Zeichenfolge ein: Dies ist ein Satz mit Tab-Tabs Ergebnis: Dies ist ein Satz mit Tab-Tabs