clojure.string/last-index-of

functionsince v1.7.145 clojure.string/last-index-ofEdit
(last-index-of s value)
(last-index-of s value from-index)

Source docstring:
Return last index of value (string or char) in s, optionally
searching backward from from-index or nil if not found.
Source code @ clojurescript:src/main/cljs/clojure/string.cljs
(defn last-index-of
  ([s value]
   (let [result (.lastIndexOf s value)]
     (if (neg? result)
       nil
       result)))
  ([s value from-index]
   (let [result (.lastIndexOf s value from-index)]
     (if (neg? result)
       nil
       result))))