< Rebol Programming

USAGE:

DECODE-URL url 

DESCRIPTION:

Decode a URL into an object.

DECODE-URL is a function value.

ARGUMENTS

  • url -- (Type: any)

SOURCE CODE

decode-url: func [
    "Decode a URL into an object." 
    url 
    /local purl
][
    purl: context [user: pass: host: port-id: path: target: none] 
    parse-url/no-error purl url
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.