URL::Parse — Tokenize URL
Import URL;
map URL::Parse (
)
URL to be parsed
URL split to tokens
Parse("http://name:pass@www.suse.cz:80/path/index.html?question#part") -> $[ "scheme" : "http", "host" : "www.suse.cz" "port" : "80", "path" : /path/index.html", "user" : "name", "pass" : "pass", "query" : "question", "fragment": "part" ]