in reply to Help with HTML::Entities - decode_entities
decode_entities and _decode_entities are two different functions with two different interfaces.
http://search.cpan.org/dist/HTML-Parser/MANIFEST#!/usr/bin/perl -- use strict; use warnings; use HTML::Entities; use Test::More tests => 3; my $str = q!amp & 59 ; quot "!; is( decode_entities($str), 'amp & 59 ; quot "' ); is( join( '-', decode_entities( $str, $str ) ), join( '-', 'amp & 59 ; quot "' , 'amp & 59 ; quot "' ) ); { my $str = $str; _decode_entities( $str, { amp => "&", 59 => ";" }, 0 ); is( $str, 'amp & 59 ; quot "' ); } __END__
How (Not) To Ask A Questiont/entities.t Test encoding/decoding of entities t/entities2.t Test _decode_entities()
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Help with HTML::Entities - decode_entities
by punch_card_don (Curate) on Jul 09, 2010 at 00:14 UTC | |
by Anonymous Monk on Jul 09, 2010 at 00:24 UTC |