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"?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

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.

link|improve this answer
Thanks, that worked – planetp Mar 26 '10 at 14:36
feedback

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

link|improve this answer
Why not answer a question with a question? – Sinan Ünür Mar 26 '10 at 14:50
This approach is ok. In my script, params to find_all_links() are created dynamically. I find it easier to just use these params, w/o any special cases – planetp Mar 26 '10 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.