我的程序未显示所需的匹配结果。我的文本文件包含以下行:
- 红车
- 蓝色或红色
- 红色的
- 车
所以如果我搜索:“红色汽车”。我只得到“红车”作为唯一的结果,但我想要的是得到以下结果:
- 红车
- 红色的
- 红色的
- 车
因为这些字符串在文本文件中。蓝色或红色,“或”是合乎逻辑的。所以我想匹配它们中的任何一个而不是两者。我究竟做错了什么?任何帮助表示赞赏。我的代码如下:
public static void main(String[] args) {
// TODO code application logic here
//String key;
String strLine;
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("C:\\textfile.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
Scanner input = new Scanner (System.in);
System.out.print("Enter Your Search: ");
String key = input.nextLine();
while ((strLine = br.readLine()) != null) {
Pattern p = Pattern.compile(key); // regex pattern to search for
Matcher m = p.matcher(strLine); // src of text to search
boolean b = false;
while(b = m.find()) {
System.out.println( m.start() + " " + m.group()); // returns index and match
// Print the content on the console
}
}
//Close the input stream
in.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}