Vocabularyurls.
encodingInputsOutputsWord descriptionParses a URL query string and URL-decodes each component.
NotesThis word is used by the implementation of
URL objects. It is also used by the HTTP server to parse POST requests.
ExamplesUSING: linked-assocs prettyprint urls.encoding ;
"gender=female&agefrom=22&ageto=28&location=Omaha+NE"
query>assoc .
LH{
{ "gender" "female" }
{ "agefrom" "22" }
{ "ageto" "28" }
{ "location" "Omaha NE" }
}
Definition