在Java中,你可以使用Pattern
和Matcher
類來匹配字符串。以下是一個簡單的示例,展示了如何使用正則表達式匹配字符串:
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class Main {
public static void main(String[] args) {
String input = "Hello, my name is John Doe. I am 30 years old.";
String regex = "John Doe";
// 編譯正則表達式
Pattern pattern = Pattern.compile(regex);
// 創建匹配器
Matcher matcher = pattern.matcher(input);
// 檢查是否匹配
if (matcher.find()) {
System.out.println("匹配成功: " + matcher.group());
} else {
System.out.println("匹配失敗");
}
}
}
在這個示例中,我們使用了正則表達式"John Doe"
來匹配字符串input
。Pattern.compile()
方法用于編譯正則表達式,pattern.matcher()
方法用于在輸入字符串中查找匹配項。matcher.find()
方法檢查是否找到匹配項,如果找到,matcher.group()
方法返回匹配的字符串。
你可以根據需要修改正則表達式和輸入字符串來匹配不同的內容。如果你需要更復雜的匹配規則,可以查閱Java正則表達式文檔以獲取更多信息。