/left-pad-clojure

A library which adds left padding to a string

Primary LanguageClojureEclipse Public License 1.0EPL-1.0

left-pad

A Clojure library designed to add left padding to a string.

Usage

(leftpad "hello" 8) => "   hello"
(leftpad "hello" 2) => "hello"
(leftpad "hello" 8 0) => "000hello"
(leftpad "hello") => "     hello"

License

MIT