Query: uri::split
OS: centos
Section: 3
Links: centos man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
URI::Split(3) User Contributed Perl Documentation URI::Split(3)NAMEURI::Split - Parse and compose URI stringsSYNOPSISuse URI::Split qw(uri_split uri_join); ($scheme, $auth, $path, $query, $frag) = uri_split($uri); $uri = uri_join($scheme, $auth, $path, $query, $frag);DESCRIPTIONProvides functions to parse and compose URI strings. The following functions are provided: ($scheme, $auth, $path, $query, $frag) = uri_split($uri) Breaks up a URI string into its component parts. An "undef" value is returned for those parts that are not present. The $path part is always present (but can be the empty string) and is thus never returned as "undef". No sensible value is returned if this function is called in a scalar context. $uri = uri_join($scheme, $auth, $path, $query, $frag) Puts together a URI string from its parts. Missing parts are signaled by passing "undef" for the corresponding argument. Minimal escaping is applied to parts that contain reserved chars that would confuse a parser. For instance, any occurrence of '?' or '#' in $path is always escaped, as it would otherwise be parsed back as a query or fragment.SEE ALSOURI, URI::EscapeCOPYRIGHTCopyright 2003, Gisle Aas This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2012-02-11 URI::Split(3)
Related Man Pages |
---|
uri::url5.18(3) - mojave |
uri::data5.18(3) - mojave |
uri::split(3) - mojave |
uri::url(3) - osx |
uri::split(3) - centos |
Similar Topics in the Unix Linux Community |
---|
Split strings based on length |
Split, Search and Reformat by Data Group |
AWK splitting a string of equal parts of 500 chars |
Split command |
Split file by column value, each with header |