I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-11-26 06:02:04-08 by uchino
unescapeHTML edit text

Sorry, my English is poor.

I hope that unescapeHTML does not edit 'not escaped text'.

ex.

my $text = 'http://xxx.yyy.com/foo.cgi?aaa&bbb&ccc/111/222/333/xxx;yyy;zzz;'; # Yes, this is strang +e URL, but I found it. $text = unescapeHTML($text);

resalt: http://xxx.yyy.com/foo.cgi?aaabbb&ccc/111/222/333/xxxyyy;zzz;

unescapeHTML mistakes '&bbb&ccc/111/222/333/xxx;' for escaped text.
I think line 154 in Util.pm $_ ----------> "&$_;"
or
line 144 $unescape =~ s[&(.*?);]{ ----------> $unescape =~ s[&([\w#]+?);]{

Direct Responses: Write a response