(prefixes-by-including text s)
Returns all prefixes of the text
which are delimited by an
occurrence of the provided string s
.
Includes the delimiter in all prefixes.
Returns all prefixes of the `text` which are delimited by an occurrence of the provided string `s`. Includes the delimiter in all prefixes.
(re-find-last re s)
Returns the last match of re
in s
if any.
Returns the last match of `re` in `s` if any.
(re-fn string)
Construct a regular expression from string. Calling a regular expression with no arguments returns a Pattern. Calling a regular expression with a string argument returns nil if no matches, otherwise the equivalent of (re-seq re string).
Construct a regular expression from string. Calling a regular expression with no arguments returns a Pattern. Calling a regular expression with a string argument returns nil if no matches, otherwise the equivalent of (re-seq re string).
(remove-from-end s end)
Removes a strictly trailing substring.
Removes a strictly trailing substring.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close