What I want to do is change an array, say,
[1,2,[3,4],17.5]
into a sting like
"[1,2,[3,4],17.5]"
but not like
"1,2,3,4,17.5"
i.e. keeping all of the brackets. I tried using the built in String() function, but that gave me "1,2,3,4,17.5" Is there a built-in function or a code snippet that I can use to get "[1,2,[3,4],17.5]"?
Thanks!