in reply to Re^2: HTML::Treebuilder Special charactersin thread HTML::Treebuilder Special characters
sub encode_entities_decimal { my $text = shift; $text =~ s{([^\0-\x7f])}{sprintf("&#%d;",ord($1))}ge; $text; } [download]