Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            return $text;
        }
    }
    
  2. or download this
            
    my $dom = Mojo::DOM->new($HTML);
    my $text = $dom->all_text();
    
  3. or download this
    my $dom = Mojo::DOM->new($HTML);
    my $text = $dom->at('body')->all_text();