import java.util.regex.Matcher;
import java.util.regex.Pattern;
這兩個類,然後。
Pattern p=Pattern.compile(regex);
Matcher m;
for(int j=0;j<comments.length;j++){
m=p.matcher(comments[j]);
if(m.find()){
System.out.println(m.group());
}
}
我想匹配目標文本中的文字,如果regex=(hello)+;
但是只能匹配到字串含有hello的,然而!!!現在要求是:怎麼能夠匹配得到含有hell o(hell(空格)o),就是在hell 和o含有空格
的這樣的字符串啊。
當然,
Pattern p=Pattern.compile(regex);
Matcher m;
for(int j=0;j<comments.length;j++){
m=p.matcher(comments[j].replaceAll("\s",""));
if(m.find()){
System.out.println(m.group());
}
}
這樣做是可以輸出去掉空格的hello,但是,現在要求,輸出的是含空格的hell o而不是將空格去掉的hello。。
求大神解答啊!!!
h[ello ]+o