Turn List into one String without Spaces
hi all,
what is a simple way to turn a list (e.g. [a, b, c, d]) into one string without spaces (e.g. "abcd")?
Thank you!
Best Frank
Maybe with [tosymbol], like in this example:
Max Patch
Copy patch and select New From Clipboard in Max.
If you are talking javascript (by the looks of your example) you can use the .join("") method with an empty string as argument.
var arr = [0, 1, 2, 3, 4];
var str = arr.join(""); //returns "01234"
If you want to stay in the Max domain check out [regex].