Scroll to navigation

IRI(3pm) User Contributed Perl Documentation IRI(3pm)
 

NAME

IRI - Internationalized Resource Identifiers

VERSION

This document describes IRI version 0.004

SYNOPSIS

  use IRI;
  
  my $i = IRI->new(value => 'https://example.org:80/index#frag');
  say $i->scheme; # 'https'
  say $i->path; # '/index'
  my $base = IRI->new(value => "http://www.hestebedg\x{e5}rd.dk/");
  my $i = IRI->new(value => '#frag', base => $base);
  say $i->abs; # 'http://www.hestebedgaard.dk/#frag'

DESCRIPTION

The IRI module provides an object representation for Internationalized Resource Identifiers (IRIs) as defined by RFC 3987 <http://www.ietf.org/rfc/rfc3987.txt> and supports their parsing, serializing, and base resolution.

METHODS

"as_string"
Returns the absolute IRI string resolved against the base IRI, if present; the relative IRI string otherwise.
"abs"
Returns the absolute IRI string (resolved against the base IRI if present).
"scheme"
"host"
"port"
"user"
"path"
"fragment"
"query"
Returns the respective component of the parsed IRI.

SEE ALSO

<http://www.ietf.org/rfc/rfc3987.txt>

AUTHOR

Gregory Todd Williams "<gwilliams@cpan.org>"

COPYRIGHT

Copyright (c) 2014 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2014-09-25 perl v5.20.1