在Java中,使用正則表達式進行邊界匹配時,可以使用以下方法:
^
表示字符串的開始邊界。$
表示字符串的結束邊界。\b
表示單詞邊界。\B
表示非單詞邊界。下面是一些示例:
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class BoundaryMatching {
public static void main(String[] args) {
// 示例1:使用^和$進行字符串邊界匹配
String str1 = "Hello, world!";
String pattern1 = "^Hello, world!$";
Matcher matcher1 = Pattern.compile(pattern1).matcher(str1);
System.out.println("Example 1: " + matcher1.matches()); // 輸出:true
// 示例2:使用\b進行單詞邊界匹配
String str2 = "Hello, world!";
String pattern2 = "\\bworld\\b";
Matcher matcher2 = Pattern.compile(pattern2).matcher(str2);
System.out.println("Example 2: " + matcher2.find()); // 輸出:true
// 示例3:使用\B進行非單詞邊界匹配
String str3 = "Hello, world!";
String pattern3 = "\\Bworld\\B";
Matcher matcher3 = Pattern.compile(pattern3).matcher(str3);
System.out.println("Example 3: " + matcher3.find()); // 輸出:false
}
}
在這些示例中,我們使用了Pattern
和Matcher
類來處理正則表達式。^
和$
用于匹配字符串的開始和結束邊界,\b
用于匹配單詞邊界,而\B
用于匹配非單詞邊界。