cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
SpannerHead
Level VI

List to String

I want to take a list and express the entire list as a comma separated string.  My purpose is to name the finished data table to include all the items in the list.

 

Char(List_items);

Works but it's ugly, is there a better way?

 

{-Item 1-, -Item 2-}


Slán



SpannerHead
2 ACCEPTED SOLUTIONS

Accepted Solutions
jthi
Super User

Re: List to String

SpannerHead
Level VI

Re: List to String

Jarmo

 

Better than what I had for sure.  To get the delimiter, I did this.

 

Lots = Concat Items(List, ", ");

Slán



SpannerHead

View solution in original post

2 REPLIES 2
jthi
Super User

Re: List to String

Concat Items()?

-Jarmo
SpannerHead
Level VI

Re: List to String

Jarmo

 

Better than what I had for sure.  To get the delimiter, I did this.

 

Lots = Concat Items(List, ", ");

Slán



SpannerHead

Recommended Articles