Steven Schveighoffer: > Tell me how you would parse the following text serialization string for a > string[]: > > hello world how are you > > What if it was a string[][]? > > Compare that to: > > [hello world, [how are, you]]
You are missing something: ["hello world", ["how are", "you"]] :-) (And yes, there are simple solutions if the strings contains " or '). Bye, bearophile
