in reply to Re: Decoding unicode entities with HTML::Parser
in thread Decoding unicode entities with HTML::Parser

Cool, cool!

This is exactly what I needed to know. I rewrote the function with a regex (which is a bit slower) and fall back to it when HTML::Entities::UNICODE_SUPPORT is false. Thanks a lot for the insight.

use strict; use warnings; print "Just Another Perl Hacker\n";
  • Comment on Re^2: Decoding unicode entities with HTML::Parser