1URI::Split(3) User Contributed Perl Documentation URI::Split(3)
2
3
4
6 URI::Split - Parse and compose URI strings
7
9 use URI::Split qw(uri_split uri_join);
10 ($scheme, $auth, $path, $query, $frag) = uri_split($uri);
11 $uri = uri_join($scheme, $auth, $path, $query, $frag);
12
14 Provides functions to parse and compose URI strings. The following
15 functions are provided:
16
17 ($scheme, $auth, $path, $query, $frag) = uri_split($uri)
18 Breaks up a URI string into its component parts. An "undef" value
19 is returned for those parts that are not present. The $path part
20 is always present (but can be the empty string) and is thus never
21 returned as "undef".
22
23 No sensible value is returned if this function is called in a
24 scalar context.
25
26 $uri = uri_join($scheme, $auth, $path, $query, $frag)
27 Puts together a URI string from its parts. Missing parts are
28 signaled by passing "undef" for the corresponding argument.
29
30 Minimal escaping is applied to parts that contain reserved chars
31 that would confuse a parser. For instance, any occurrence of '?'
32 or '#' in $path is always escaped, as it would otherwise be parsed
33 back as a query or fragment.
34
36 URI, URI::Escape
37
39 Copyright 2003, Gisle Aas
40
41 This library is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44
45
46perl v5.30.1 2020-01-30 URI::Split(3)