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;