Search found 2 matches

by mwg
Sun Jan 01, 2006 4:36 am
Forum: Anything else we might add?
Topic: String to List
Replies: 10
Views: 10864

Oops, with the following: (defun explode (string1) (let* ((character (string (char string1 0))) (new-string (subseq string1 1)) (new-length (length new-string))) (cond ((eql new-length 1) (list character new-string)) (t (cons character (explode new-string)))))) ...which leads to.... ; SLIME: The Sup...
by mwg
Sun Jan 01, 2006 4:20 am
Forum: Anything else we might add?
Topic: String to List
Replies: 10
Views: 10864

Maybe the first item here:

http://cl-cookbook.sourceforge.net/strings.html

is what you want.

Regards,
mwg