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