Base library for dealing with URLs (Uniform Resource Locators).
Currently, it contains operations for encoding and decoding strings to and from URL encoded format which are useful to construct URLs with parameter strings.
Author: Michael Hanus
Version: April 2025
string2urlencoded
:: String -> String Translates strings into equivalent URL encoded strings. |
param2urlencoded
:: (String,String) -> String Translates a parameter (name/value pair) into an URL encoded string where both components are URL encoded and separated by = .
|
params2urlencoded
:: [(String,String)] -> String Translates a list of parameters (name/value pairs) into URL encoded strings where the parameters are separated by & .
|
urlencoded2string
:: String -> String Translates an URL encoded string into an equivalent ASCII string. |
Translates strings into equivalent URL encoded strings.
See also
|
Translates a parameter (name/value pair) into an URL encoded string
where both components are URL encoded and separated by
|
Translates a list of parameters (name/value pairs)
into URL encoded strings where the parameters are separated by |
Translates an URL encoded string into an equivalent ASCII string.
|