如何使用 Perl 的 WWW::Mechanize 从页面中提取除链接之外的所有链接?

发布于 2024-08-26 20:43:19 字数 364 浏览 2 评论 0原文

我正在尝试使用 WWW::Mechanize 从 HTML 中提取一些链接使用 find_all_links() 方法的页面。它支持根据以下条件进行匹配:

  • text
  • text_regex
  • url
  • url_regex
  • url_abs
  • url_abs_regex
    ...

如何提取所有链接除了包含文本“xyz”的链接?

I'm trying to use WWW::Mechanize to extract some links from the HTML page using find_all_links() method. It supports matching on these criterias:

  • text
  • text_regex
  • url
  • url_regex
  • url_abs
  • url_abs_regex
    ...

How can I extract all links except one that has text "xyz"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少女净妖师 2024-09-02 20:43:19

您可以使用 'text_regex' 标准:

$mech->find_all_links(text_regex => qr/^(?!xyz$).*$/);

请参阅 perldoc perlre 了解更多关于否定前瞻断言。

You can use the 'text_regex' criteria:

$mech->find_all_links(text_regex => qr/^(?!xyz$).*$/);

See perldoc perlre for more on negative look-ahead assertion.

两相知 2024-09-02 20:43:19

为什么不获取所有链接,然后使用“grep”跳过那些不需要的链接?

Why not get all links then use 'grep' to skip those you don't need?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文