MKDoc::XML::Encode.3pm

Langue: en

Autres versions - même langue

Version: 2004-10-06 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

MKDoc::XML::Encode - Encodes XML entities

SYNOPSIS

   use MKDoc::XML::Encode;
 
   # $xml is now "Chris' Baloon"
   my $xml = MKDoc::XML::Encode->process ("Chris' Baloon");
 
 

SUMMARY

MKDoc::XML::Encode is a very simple module which encodes the following entities.
   '
   "
   >
   <
   &
 
 

That's it.

This module and its counterpart MKDoc::XML::Decode are used by MKDoc::XML::Dumper to XML-encode and XML-decode litterals.

API

my $xml_encoded = MKDoc::XML::Encode->process ($some_string);

Does what is said in the summary.

AUTHOR

Copyright 2003 - MKDoc Holdings Ltd.

Author: Jean-Michel Hiver

This module is free software and is distributed under the same license as Perl itself. Use it at your own risk.

SEE ALSO

MKDoc::XML::DecodeHO MKDoc::XML::Encode