GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
XML::Entities(3) User Contributed Perl Documentation XML::Entities(3)

XML::Entities - Decode strings with XML entities

 use XML::Entities;

 $a = "Tom & Jerry © Warner Bros.";
 $b = XML::Entities::decode('all', $a);
 $c = XML::Entities::numify('all', $a);
 # now $b is "Tom & Jerry © Warner Bros.
 # and $c is "Tom & Jerry © Warner Bros."

 # void context modifies the arguments
 XML::Entities::numify('all', $a);
 XML::Entities::decode('all', $a, $c);
 # Now $a, $b and $c all contain the decoded string

Based upon the HTML::Entities module by Gisle Aas

This module deals with decoding of strings with XML character entities. The module provides two functions:

decode( $entity_set, $string, ... )
This routine replaces XML entities from $entity_set found in the $string with the corresponding Unicode character. Unrecognized entities are left alone.

The $entity_set can either be a name of an entity set - the selection of which can be obtained by XML::Entities::Data::names(), or "all" for a union, or alternatively a hashref which maps entity names (without leading &'s) to the corresponding Unicode characters (or strings).

If multiple strings are provided as argument they are each decoded separately and the same number of strings are returned.

If called in void context the arguments are decoded in-place.

Note: If your version of "HTML::Parser" was built without Unicode support, then "XML::Entities" uses a regular expression to do the decoding, which is slower.

numify( $entity_set, $string, ... )
This functions converts named XML entities to numeric XML entities. It is less robust than the "decode" function in the sense that it doesn't capture improperly terminated entities. It behaves like "decode" in treating parameters and returning values.

The list of entities is defined in the XML::Entities::Data module. The list can be generated from the w3.org definition (or any other). Check "perldoc XML::Entities::Data" for more details.

The HTML::Entities module provides a function for encoding entities. You just have to assign the right mapping to the %HTML::Entities::char2entity hash. So, to encode everything that XML::Entities knows about, you'd say:

 use XML::Entities;
 use HTML::Entities;
 %HTML::Entities::char2entity = %{
    XML::Entities::Data::char2entity('all');
 };
 my $encoded = encode_entities('tom&jerry');
 # now $encoded is 'tom&jerry'

HTML::Entities, XML::Entities::Data

Copyright 2012 Jan Oldrich Kruza <sixtease@cpan.org>. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2015-08-17 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.