Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^6: how to extract iframes from text

by moritz (Cardinal)
on May 01, 2013 at 04:57 UTC ( [id://1031494]=note: print w/replies, xml ) Need Help??


in reply to Re^5: how to extract iframes from text
in thread how to extract iframes from text

Mojo::DOM->find returns a Mojo::Collection object, which is a blessed array reference. So you have have to dereference it to get an array:

my $iframes = Mojo::DOM->new($string)->find('iframe'); my @iframes = @$iframes;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1031494]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (8)
As of 2024-04-23 17:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found