use strict; use warnings; use feature 'say'; use Mojo::DOM; my $html = ' $8.39 $1
do not find me
find this '; my $dom = Mojo::DOM->new( $html ); for my $element ($dom->find('span strong')->each) { say $element->text; } #### $8.39 $1 find this