资料内容:
在 Java 中,正则表达式(Regular Expressions)通常通
过 java.util.regex包中的 Pattern和 Matcher类来使用。
下面是一个简单的例子,展示了如何使用正则表达式来匹
配和提取字符串中的特定部分。
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
public static void main(String[] args) {
// 要匹配的字符串
String text = "Hello, my email is example@example.
com and my phone number is 123-456-7890.";
// 定义正则表达式来匹配电子邮件地址
String emailRegex = "\\b[A-Za-z0-9._%+-]+@[A-Za-z
0-9.-]+\\.[A-Z|a-z]{2,}\\b";
// 定义正则表达式来匹配电话号码
String phoneRegex = "\\b\\d{3}-\\d{3}-\\d{4}\\b";
// 编译正则表达式
Pattern emailPattern = Pattern.compile(emailRegex)
;
Pattern phonePattern = Pattern.compile(phoneRegex)
;
// 创建 Matcher 对象Matcher emailMatcher = emailPattern.matcher(text);
Matcher phoneMatcher = phonePattern.matcher(text);
// 查找电子邮件地址
System.out.println("Email addresses found:");
while (emailMatcher.find()) {
System.out.println(emailMatcher.group());
}
// 查找电话号码
System.out.println("\nPhone numbers found:");
while (phoneMatcher.find()) {
System.out.println(phoneMatcher.group());
}
}
}