Returns the form-url-decoded version of the given string, using either a
specified encoding or UTF-8 by default.
(defn url-decode "Returns the form-url-decoded version of the given string, using either a specified encoding or UTF-8 by default." [encoded & [encoding]] (URLDecoder/decode encoded (or encoding "UTF-8")))
Comments top
No comments for url-decode. Log in to add a comment.