I am using HTML::TreeBuilder
in order to extract data from html file. What I need to do is to:
$div->look_down(_tag => 'a', 'href' !=> 'index.html')
So I am searching for a href that is not equal to 'index.html' and one other tag but obviously !=>
is not proper command for HTML::TreeBuilder
.
How can I achieve something like that? Can I use regular expression?
BR