query-param ( url key -- value )
Furnace framework ยป URL objects

Prev:ensure-port ( url -- url' )
Next:set-query-param ( url value key -- url )


Vocabulary
urls

Inputs
urlan url
keya string


Outputs
valuea string or f


Word description
Outputs the URL-decoded value of a URL query parameter.

Examples
USING: io urls ; URL" http://food.com/calories?item=French+Fries" "item" query-param print
French Fries


Definition