Jump to content

list convert to string - help


muthu123

Recommended Posts

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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..

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...