I have a text that looks like this: function 23 34 56 and I need to extract the 23, 34 and 56 as numbers. So I write something like:
String s = "function 2 3 4";
String[] tokens = (s.trim()).split(" ");
int num1 = Integer.parseInt(tokens[1]);
The app crashes here. where could the error be?
I tried finding the length of tokens... comes out to be 4 (for the string "func 23 34 56")... the exception thrown is "numberformatexceptio"... commenting out the parseInt line prevents the crash... i have no clue about what is going wrong... plse help (Android 2.1)
If anyone can post a code to capture the data using regex, that would be helpful too...thnx..
tokens[1]. – Aki Jan 18 at 4:33