in reply to Re^2: Extracting HTML content between the h tags
in thread Extracting HTML content between the h tags
... with substr as before ...my @solution_2 = $content->findvalues( './h2[4]/preceding-sibling::*' +); unless ( @solution_2 ) { @solution_2 = $content->findvalues( '//hr/preceding-sibling::*' ); }
|
|---|