URI::Namespace(3pm) | User Contributed Perl Documentation | URI::Namespace(3pm) |
URI::Namespace - A namespace URI/IRI class with autoload methods
use URI::Namespace; my $foaf = URI::Namespace->new( 'http://xmlns.com/foaf/0.1/' ); print $foaf->as_string; print $foaf->name;
This module provides an object with a URI/IRI attribute, typically used prefix-namespace pairs, typically used in XML, RDF serializations, etc. The local part can be used as a method, these are autoloaded.
The following methods from URI can be used on an URI::Namespace object: "as_string", "as_iri", "canonical", "eq", "abs", "rel".
One important usage for this module is to enable you to create URIs for full URIs, e.g.:
print $foaf->Person->as_string;
will return
http://xmlns.com/foaf/0.1/Person
See URI::NamespaceMap for further details about authors, license, etc.
2018-11-02 | perl v5.28.0 |