muthu123 Posted June 10, 2010 Posted June 10, 2010 I have a list like this (1 STUBCOL BM-01 BM-01 0 0 0 250 15.56 0 0) and it sholuld be converted to like this. Each element of the lisp will be converted to string. ("1" "STUBCOL" "BM-01" "BM-01" "0" "0" "0" "250" "15.56" "0" "0") Yours, Muthu Quote
jammie Posted June 10, 2010 Posted June 10, 2010 vl-princ-to-string could be useful for this example (mapcar 'vl-princ-to-string '(1 STUBCOL BM-01 BM-01 0 0 0 250 15.56 0 0)) ("1" "STUBCOL" "BM-01" "BM-01" "0" "0" "0" "250" "15.56" "0" "0") Regards Jammie Quote
muthu123 Posted June 10, 2010 Author Posted June 10, 2010 vl-princ-to-string could be useful for this example (mapcar 'vl-princ-to-string '(1 STUBCOL BM-01 BM-01 0 0 0 250 15.56 0 0)) ("1" "STUBCOL" "BM-01" "BM-01" "0" "0" "0" "250" "15.56" "0" "0") Regards Jammie Thank you so much.. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.