在阅读的过程中有任何问题,欢迎一起交流
QQ:1494713801
◆查找html中对应条件字符串
- Patternpattern=Pattern.compile("href=\"(.+?)\"");
- Matchermatcher=pattern.matcher("<ahref=\"index.html\">主页</a>");
- if(matcher.find()){
- System.out.println(matcher.group(1));
- }
◆查找以name="开头、包含app的字符串
String pstr = "^name=\""+"(.+?)"+"app"+"(.+?)\"";
Pattern p = Pattern.compile(pstr);
Matcher m = p.matcher("name="sede.app.com.txt"");
if(m.find()){
//相关处理
}