import java.util.regex.*;
class Regex1{
public static void main(String args[]) {
String content="For my money, the important thing "+"about the meeting was bridge-building";
String regEx="a|f"; //表示a或f
Pattern p=Pattern.compile(regEx);
Matcher propsMatcher=p.matcher(content);
while(m.find()){
int startIndex = propsMatcher.start(); // index of start
int endIndex = propsMatcher.end(); // index of end + 1
// retrieve the matching substring
String currentMatch = content.substring(startIndex, endIndex);
System.out.println(currentMatch);
}
}
}
本文通过一个简单的Java程序演示了如何使用正则表达式进行文本匹配。程序定义了一个字符串并设置了一个正则表达式来查找特定的字符。然后使用Pattern和Matcher类来实现文本的匹配和定位。
1015





