如何用正则表达式来匹配分页部分?

<a href="thread0806.php?fid=2&search=&page=2">2</a>
<a href="thread0806.php?fid=2&search=&page=3">3</a>
<a href="thread0806.php?fid=2&search=&page=4">4</a>

比如从这部分中抽取thread0806.php?fid=2&search=&page=4这段内容?

阅读 4.6k
1 个回答

1:如果用javascript,直接使用相应的获取dom元素,然后再获取dom元素的属性就可以了。
2:java 可以使用jsoup jsoup

参考代码:

String html = "<a href=\"thread0806.php?fid=2&search=&page=2\">2</a><a href=\"thread0806.php?fid=2&search=&page=3\">3</a>";
        Document doc = Jsoup.parseBodyFragment(html);
        Elements links = doc.getElementsByTag("a");
        for(Iterator<Element> it = links.iterator();it.hasNext();){
            Element link = it.next();
            String href = link.attr("href");
            System.out.println(href);
        }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题