Sockets
ParseURL
parse a URL into its components
Calling Sequence
Parameters
Description
Examples
References
ParseURL(url)
url
-
string; URL to be parsed
The procedure ParseURL is used to break a URL into its component parts. The argument url is a Maple string which represents the URL that is to be parsed.
If the URL can be parsed successfully, then a record describing the URL is returned.
The record used to describe the URL has the following slots:
scheme
hostname
port
path
user
passwd
Not all components have meaning for all supported URL schema. The meaning of the resource path, in particular, is subject to interpretation according to the URL scheme. Scheme-specific interpretation of resource paths is not currently provided for in this procedure.
When a component is either meaningless, or not present and has no default value, then the corresponding slot has the value NULL. An empty string distinguishes an empty (zero length) slot value from one that is absent entirely in the URL. (For example, telnet://joe:@host.com/path/ versus telnet://joe@host.com/path/)
The URL parser is based on the specification for URLs given in RFC 1738 Uniform Recourse Locators (URL). All the registered URL schema from that specification are supported. URLs whose scheme is unregistered have the following generic syntax:
<scheme>://<username>:<password>@<hostname>:<port>/<resource-path>
with⁡Sockets:
url≔ParseURL⁡http://www.maplesoft.com/applications/
url≔Record⁡scheme=http,hostname=www.maplesoft.com,port=80,path=applications/,user=,passwd=
url:-scheme,url:-hostname,url:-port,url:-path
http,www.maplesoft.com,80,applications/
url≔ParseURL⁡ftp://user:passwd@host.com:2002/path/to/file.txt:
url:-scheme,url:-hostname,url:-port,url:-path,url:-user,url:-passwd
ftp,host.com,2002,path/to/file.txt,user,passwd
url≔ParseURL⁡telnet://www.maplesoft.com:80:
telnet,www.maplesoft.com,80
url≔ParseURL⁡unknownScheme://user:passwd@host.com:2002/some/resource?with=search:
unknownscheme,host.com,2002,some/resource?with=search,user,passwd
Information Sciences Institute, "RFC 1738 Uniform Resource Locators (URL)," ISI Home Page, http://www.isi.edu/in-notes/rfc1738.txt; accessed 17 November 2005.
See Also
Download Help Document