Bertie92
Bertie92

Reputation: 707

Using the HTML::Element look_down method in Perl

I need to parse a HTML file which is full of different type of div tags.

For example

<div class="..">

I think I have to use the look_down function, but don't know how to differentiate the mentioned div tags.

Upvotes: 0

Views: 1670

Answers (1)

Borodin
Borodin

Reputation: 126732

You are talking about the HTML::Element module. HTML::Element objects are usually built by parsing an HTML document using HTML::TreeBuilder. Please read the documentation: it is very well written.

You need to call the look_down method like this

my @divs = $doc->look_down(_tag => 'div', class => 'myclass');

where myclass should be replaced by the value of the class attribute that you want to select.

@divs will contain a list of HTML::Element objects that match those criteria.

Upvotes: 2

Related Questions