What am I not getting?

Now I looked, you also need to read https://metacpan.org/module/HTML::TreeBuilder#parse_file because treebuilder is interpreting those UTF-8-encoded-bytes as latin-1

This works

#!/usr/bin/perl -- use strict; use warnings; use autodie; use WWW::Mechanize 1.72; #~ use HTML::TreeBuilder::XPath; #~ use HTML::TreeBuilder::LibXML; Main( @ARGV ); exit( 0 ); sub xtree { local $@; if( eval { require HTML::TreeBuilder::LibXML; } ){ return HTML::TreeBuilder::LibXML->new; } if( eval { require HTML::TreeBuilder::XPath; } ){ return HTML::TreeBuilder::XPath->new; } die "$@ you need to install use HTML::TreeBuilder::XPath or use HTML::TreeBuilder::LibXML\n\n"; } sub Main { my $url = shift or die "\n\nUsage: $0 http....\n\n"; binmode STDOUT, ':encoding(UTF-8)'; ## grr my $mech = WWW::Mechanize->new( autocheck => 1 ); my $tree = xtree(); $mech->get( $url ); $tree->parse( $mech->content ); for my $node ( $tree->findnodes( q{ //span[ @itemprop="reviewBody" + ] } ) ){ print $node->as_HTML, "\n\n"; print $node->as_text, "\n\n"; print $node->as_HTML( q{<&>} ), "\n\n"; } } __END__

In reply to Re: TreeBuilder and encoding by Anonymous Monk
in thread TreeBuilder and encoding by VineMob

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.