St

Strings in Common Lisp

22 exercises

About Strings

Since strings are vectors which are sequences (both covered in other concepts) all functions that work on sequences will work on strings - such as position, map, remove, concatenate etc..

There are also more string specific functions to do things such as compare strings to see which is alphabetically more or less string< and string>; functions to trim characters from the left, right or both sides of a string (string-trim). Refer to the Hyperspec Section on strings for full details.

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

Learn Strings

Practicing is locked

Unlock 15 more exercises to practice Strings