Created
August 27, 2011 04:38
-
-
Save siguremon/1174988 to your computer and use it in GitHub Desktop.
split string function in common lisp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun split-str (string &optional (separator " ")) | |
(split-str-1 string separator)) | |
(defun split-str-1 (string &optional (separator " ") (r nil)) | |
(let ((n (position separator string | |
:from-end t | |
:test #'(lambda (x y) | |
(find y x :test #'string=))))) | |
(if n | |
(split-str-1 (subseq string 0 n) separator (cons (subseq string (1+ n)) r)) | |
(cons string r)))) |
Thanks!
This only seems to work with single char separators.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The second function split-str-1 needs to be changed to split-1 to match the function calls. but aside from that its a nice helpful function thanks.