How to convert a list of characters to a string of characters.

jospercomp shared this question 2 years ago
Answered

How to convert a list of characters to a string of characters.

Input:

l1 = {"a", "b", "c", "d"};


Output:l2 = {"a, b, c, d"};


Input:l1 = {"n", "m", "o"};


Output:l2 = {"n, m, o"};

it would be to remove too many double quotes unnecessary.

Best Answer
photo

Take(Sum(Zip("," + (w), w, l1)), 2)

Comments (2)

photo
3

Take(Sum(Zip("," + (w), w, l1)), 2)

photo
1

Thank you so much!!!

photo
© 2023 International GeoGebra Institute