Functions for encoding and decoding data.
Functions for encoding and decoding data.
(assoc-conj map key val)
Associate a key with a value in a map. If the key already exists in the map, a vector of values is associated with the key.
Associate a key with a value in a map. If the key already exists in the map, a vector of values is associated with the key.
(base64-decode encoded)
Decode a base64 encoded string into an array of bytes.
Decode a base64 encoded string into an array of bytes.
(base64-encode unencoded)
Encode an array of bytes into a base64 encoded string.
Encode an array of bytes into a base64 encoded string.
(form-decode encoded)
(form-decode encoded encoding)
Decode the supplied www-form-urlencoded string using the specified encoding, or UTF-8 by default. If the encoded value is a string, a string is returned. If the encoded value is a map of parameters, a map is returned.
Decode the supplied www-form-urlencoded string using the specified encoding, or UTF-8 by default. If the encoded value is a string, a string is returned. If the encoded value is a map of parameters, a map is returned.
(form-decode-str encoded)
(form-decode-str encoded encoding)
Decode the supplied www-form-urlencoded string using the specified encoding, or UTF-8 by default.
Decode the supplied www-form-urlencoded string using the specified encoding, or UTF-8 by default.
(form-encode x)
(form-encode x encoding)
Encode the supplied value into www-form-urlencoded format, often used in URL query strings and POST request bodies, using the specified encoding. If the encoding is not specified, it defaults to UTF-8
Encode the supplied value into www-form-urlencoded format, often used in URL query strings and POST request bodies, using the specified encoding. If the encoding is not specified, it defaults to UTF-8
(percent-decode encoded)
(percent-decode encoded encoding)
Decode every percent-encoded character in the given string using the specified encoding, or UTF-8 by default.
Decode every percent-encoded character in the given string using the specified encoding, or UTF-8 by default.
(percent-encode unencoded)
(percent-encode unencoded encoding)
Percent-encode every character in the given string using either the specified encoding, or UTF-8 by default.
Percent-encode every character in the given string using either the specified encoding, or UTF-8 by default.
(url-decode encoded)
(url-decode encoded encoding)
Returns the url-decoded version of the given string, using either a specified encoding or UTF-8 by default. If the encoding is invalid, nil is returned.
Returns the url-decoded version of the given string, using either a specified encoding or UTF-8 by default. If the encoding is invalid, nil is returned.
(url-encode unencoded)
(url-encode unencoded encoding)
Returns the url-encoded version of the given string, using either a specified encoding or UTF-8 by default.
Returns the url-encoded version of the given string, using either a specified encoding or UTF-8 by default.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close