Removes whitespace from the left side of string.
Deprecated in 1.2. Use clojure.string/triml.
(defn ^String ltrim
"Removes whitespace from the left side of string.
Deprecated in 1.2. Use clojure.string/triml."
{:deprecated "1.2"}
[^String s]
(replace-re #"^\s+" "" s))
Comments top
No comments for ltrim. Log in to add a comment.