VocabularyurlsInputsOutputsWord descriptionSplits a string of the form
host:port into a host and a port number. If the port number is not specified, outputs
f.
NotesThis word is used by
>url. It can also be used directly to parse
host:port strings which are not full URLs.
ExamplesUSING: arrays kernel prettyprint urls ;
"sbcl.org:80" parse-host 2array .
{ "sbcl.org" 80 }
Definition