Liking cljdoc? Tell your friends :D

flatland.useful.string


camelizeclj

(camelize string)
source

classifyclj

(classify string)
source

dasherizeclj

source

pluralizeclj

(pluralize num singular & [plural])

Return a pluralized phrase, appending an s to the singular form if no plural is provided. For example: (pluralize 5 "month") => "5 months" (pluralize 1 "month") => "1 month" (pluralize 1 "radius" "radii") => "1 radius" (pluralize 9 "radius" "radii") => "9 radii"

Return a pluralized phrase, appending an s to the singular form if no plural is provided.
For example:
   (pluralize 5 "month") => "5 months"
   (pluralize 1 "month") => "1 month"
   (pluralize 1 "radius" "radii") => "1 radius"
   (pluralize 9 "radius" "radii") => "9 radii"
sourceraw docstring

substring-afterclj

(substring-after delim)

Find the part of the string s which comes after the last instance of delim.

Find the part of the string s which comes after the last instance of delim.
sourceraw docstring

substring-beforeclj

(substring-before delim)

Find the part of the string s which comes before the first instance of delim.

Find the part of the string s which comes before the first instance of delim.
sourceraw docstring

underscoreclj

source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close