newLISP Fan Club

Forum => Anything else we might add? => Topic started by: newdep on March 15, 2004, 09:01:50 AM

Title: Faster/better way converting from list to string?
Post by: newdep on March 15, 2004, 09:01:50 AM
Hello All,



What is the "best" way to convert a list into a string, silly question perhpas

but as it is not a standard function in lisp i can only emagine i.e. as a way

to do it: -->



(join xxx "") ; where xxx is the list and a string is returned.



Any quicker of better way is welcome ;-)



Regards,

Norman.
Title:
Post by: Lutz on March 15, 2004, 09:09:56 AM
(set 'lst '(a b c d e f))



(join (map string lst)) => "abcdef"



;;; or



(string lst) =>"(a b c d e f)"



Lutz