Search found 3 matches

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by awerner: <B>Visit this site: http://www.4d-technologies.com/techcenter/index.htm Here You will find a lot of autolisp's, also "Convert String to Lisp" regards Alf</B><HR></BLOCKQUOTE>...

How to parse a string in AutoLISP

Hi, I want to parse a string with space delimiters into a list of strings. A search on Google threw up this code snippet: ; --- BEGIN AutoLISP code --- (defun Str2List (str pat / i j n lst) (cond ((/= (type str)(type pat) 'STR)) ((= str pat)'("")) (T (setq i 0 n (strlen pat)) (while (setq ...

Go to advanced search