Properties
Similar Topics
Statistics
Comments
2
Participants
2
Subscribers
2
Votes
1
Views
621
Share

How to convert a list of characters to a string of characters.
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.
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2023 International GeoGebra Institute
Take(Sum(Zip("," + (w), w, l1)), 2)
Take(Sum(Zip("," + (w), w, l1)), 2)
Comments have been locked on this page!