St

Strings in Clojure

51 exercises

About Strings

A string in Clojure is a Java string, which is an object that represents immutable text as a sequence of Unicode characters (letters, digits, punctuation, etc.) and is defined as follows:

(def fruit "Apple")

The clojure.string library provides many standard string manipulation and processing functions. In addition, all the usual Java methods for operating on strings are available via interop.

Edit via GitHub The link opens in a new window or tab

Learn Strings

Practicing is locked

Unlock 9 more exercises to practice Strings