[android-developers] Parsing this string in Android

2012-03-08 Thread andyjohnson
I have made a simple web service which I return a list of values, this is the code: [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public string HelloWorld() { string[][] JaggedArray = new string[5][]; int i = 0; for (int r = 0; r 5; r++)

Re: [android-developers] Parsing this string in Android

2012-03-08 Thread TreKing
On Mon, Mar 5, 2012 at 10:20 AM, andyjohnson a...@lovedesign.co wrote: I don't know how to turn it back in to an array. Can anyone help? This has nothing to do with Android. Google java string split or tokenizer.