Biểu thức con / siêu ký tự “ \ b ”Khớp với các ranh giới từ khi nằm ngoài dấu ngoặc. Khớp với khoảng trắng lùi (0x08) khi ở bên trong dấu ngoặc.
Ví dụ 1
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 = "\\bbecause\\b"; Scanner sc = new Scanner(System.in); System.out.println("Enter a string: "); String input = sc.nextLine(); Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; while(m.find()) { count ++; } System.out.println("Number of matches: "+count); } }
Đầu ra
Enter a string: A sentence doesn't end with because because, because is a conjunction Number of matches: 3
Ví dụ 2
Ví dụ Java sau đây đọc một giá trị chuỗi từ người dùng và in ra số lượng ranh giới từ.
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main( String args[] ) { System.out.println("Enter input string: "); Scanner sc = new Scanner(System.in); String input = sc.nextLine(); String regex = "\\b"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex); //Retrieving the matcher object Matcher matcher = pattern.matcher(input); int count =0; while(matcher.find()) { count ++; } System.out.println(count); } }
Đầu ra
Enter input string: Hello how are you welcome to Tutorialspoint 14