(parse-xml-response {:keys [body]})
(trim-left str prefix)
Will take the provided string and if that string begins with the provided prefix, it will return a new string that omits that prefix. If the provided string does not contain that prefix then the original string is returned.
Will take the provided string and if that string begins with the provided prefix, it will return a new string that omits that prefix. If the provided string does not contain that prefix then the original string is returned.
(trim-right str suffix)
Will take the provided string and if that string ends with the provided suffix then a new string without that suffix will be returned. If the string does not contain the suffix then the original string is returned.
Will take the provided string and if that string ends with the provided suffix then a new string without that suffix will be returned. If the string does not contain the suffix then the original string is returned.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close