Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: XML equivalent of HTML::Entities?

by mirod (Canon)
on Jun 19, 2001 at 22:09 UTC ( [id://89762]=note: print w/replies, xml ) Need Help??


in reply to XML equivalent of HTML::Entities?

It all depends on the result you want.

If you want to get HTML entities (é as é, etc.) then it makes sense to use HTML::Entities.

If you want to escape only &, <, >, ", and ', then you can use XML::Parser::Expat::xml_escape, but frankly it doesn't make much sense to do that.

If you want to escape those characters and also to turn all characters outside of the 0-127 range into XML character entities (i.e. &#nnn;), then you can use the following subroutine, lifted from XML::DOM and not tested with all the possible system/Perl/XML-parser combinations:

sub safe_encode { my $str = shift; $str =~ s{ ([\xC0-\xDF].|[\xE0-\xEF]..|[\xF0-\xFF]...) }{ XmlUtf8Decode($1) }xegs; $str } sub XmlUtf8Decode { my( $str, $hex ) = @_; my $len = length $str; my $n; if ( $len == 4 ) { my @n = unpack "C4", $str; $n = (($n[0] & 0x0f) << 18) + (($n[1] & 0x3f) << 12) + (($n[2] + & 0x3f) << 6) + ($n[3] & 0x3f); } elsif ( $len == 3 ) { my @n = unpack "C3", $str; $n = (($n[0] & 0x1f) << 12) + (($n[1] & 0x3f) << 6) + ($n[2] & + 0x3f); } elsif ( $len == 2 ) { my @n = unpack "C2", $str; $n = (($n[0] & 0x3f) << 6) + ($n[1] & 0x3f); } elsif ( $len == 1 ) { $n = ord $str; } else { die "bad value '$str' for XmlUtf8Decode"; } $hex ? sprintf( "&#x%x;", $n ) : "&#$n;" }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://89762]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (7)
As of 2024-04-23 12:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found