(subs s start)
(subs s start end)
Returns the substring of s beginning at start inclusive, and ending
at end (defaults to length of string), exclusive.
Source
(defn
subs
"Returns the substring of s beginning at start inclusive, and ending\n at end (defaults to length of string), exclusive."
([s start] (.substring s start))
([s start end] (.substring s start end)))