((
Size: a a a
((
ИФ
RL
ИФ
MG
ИФ
AI
AI
(defn triml [s] (str/triml (str s)))
AI
(defn subs
([s start end]
(let [s-length (count s)
start* (max 0 (min s-length start))
end* (max start* (min s-length end))]
(core-subs s start* end*)))
([s start]
(let [s-length (count s)
start* (max 0 (min s-length start))]
(core-subs s start*))))
AI
AI
OR
(def triml (fnil str/triml ""))
OR
str
AI
AI
(str/trim 123)
ClassCastException java.lang.Long cannot be cast to java.lang.CharSequence clojure.string/trim (string.clj:234)
OR
OR
OR
OR
OR