Clojure - Stringhe minuscole
Converte la stringa in tutte le lettere minuscole.
Sintassi
Di seguito è riportata la sintassi.
(lower-case s)
Parameters - Dove 's' è la stringa da convertire.
Return Value - La stringa in minuscolo.
Esempio
Di seguito è riportato un esempio di lettere minuscole in Clojure.
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println (clojure.string/lower-case "HelloWorld"))
(println (clojure.string/lower-case "HELLOWORLD")))
(hello-world)
Produzione
Il programma precedente produce il seguente output.
helloworld
helloworld