Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for my $chunk ( $dom->find('a')->each ) {
        print 'Chunk ' . $i++ . ': ' . $chunk->text . "\n";
    }
    
  2. or download this
    Chunk 1: word1 word2 word3
    Chunk 2: word4 word5
    Chunk 3: word6 word7