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..

link|improve this question
tokens[1]? Are you sure that tokens has anything in it. It may pay to test the length before accessing it. – Dan Walmsley Jan 18 at 4:30
1  
what's the error? – Joe Tuskan Jan 18 at 4:32
Need to know the error message. Appears to be nothing in this fragment of code which would cause an error. – Steven Jan 18 at 4:32
Post the stacktrace and try logging the value of tokens[1]. – Aki Jan 18 at 4:33
Are you sure app crash here? it looks fine – Sameer Jan 18 at 5:19
feedback

2 Answers

The code, you posted, runs fine. Nevertheless here is a regex solution:

String s = "function 2 3 4";
Pattern p = Pattern.compile("function\\s+(\\d+)\\s+(\\d+)\\s+(\\d+)");
Matcher m = p.matcher(s);
if (m.matches()) {
    System.out.println(Integer.parseInt(m.group(1)));
    System.out.println(Integer.parseInt(m.group(2)));
    System.out.println(Integer.parseInt(m.group(3)));
}
link|improve this answer
thnks henrik for the regex :) ... the parseInt still causes a crash ... you code works smoothly!! – user1155386 Jan 19 at 7:43
feedback

use

int[] num=new int[tokens.length];
for(int i=0;i<tokens.length;i++)
{
   num[i] = Integer.parseInt(tokens[i]);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.