Is there any way to do this without going through each character of a string and stripping it down piece by piece?
I'm trying to convert this:
"[[9,0][10,3,["bill",2,1]]]"
into a real array
I could probably use char.at or charAt or whatever it's called if I got desperate, but I'm hoping there's a better, more efficient way.
Any suggestions?
