English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
التعبير الفرعي/الرمز "\S" يتطابق مع الرموز غير المفرغة.
import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexExample { public static void main( String args[] ) {}} String regex = "\\S"; String input = "您好,欢迎来到w3codebox!"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; while(m.find()) { count++; } System.out.println("عدد التطابقات: " + count); } }
نتيجة الإخراج
عدد التطابقات: 38
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main( String args[] ) {}} String regex = "\\S"; Scanner sc = new Scanner(System.in); System.out.println("ادخل 5 نصوص إدخال:"); String input[] = new String[5]; for (int i = 0; i < 5; i++) { input[i] = sc.nextLine(); } //إنشاء Pattern Pattern p = Pattern.compile(regex); System.out.println("عدد الأحرف في كل نص بدون مسافات:"); for(int i = 0; i < 5; i++) { //إنشاء Matcher Matcher m = p.matcher(input[i]); int count = 0; while(m.find()) { count++; } System.out.println("String " + i +": " + count); } } }
نتيجة الإخراج
ادخل 5 نصوص إدخال: sample123 test data test *123 ab bc cd de مرحبًا كيف حالك ترحيبًا في w3codebox عدد الأحرف في كل نص بدون مسافات: String 0: 9 String 1: 8 String 2: 8 String 3: 8 String 4: 37