Perl
Perl
StringBuilder EntityDecode
Demonstrates the Chilkat StringBuilder EntityDecode method to decode HTML entities.Chilkat Perl Downloads
use chilkat();
# Decode the following HTML entities, replacing each with the character represented.
$s = "é é é Latin small letter e with acute";
$sb = chilkat::CkStringBuilder->new();
$sb->Append($s);
$sb->EntityDecode();
# Output: é é é Latin small letter e with acute
print $sb->getAsString() . "\r\n";