Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a String[], where each element is convertible to an integer. What's the best way I can convert this to an int[]?

int[] StringArrayToIntArray(String[] s)
{
    ... ? ...
}
share|improve this question
Looks an awful lot like homework, apologies if it is not. – Woot4Moo Aug 9 '11 at 21:29
It's not homework, thanks. – notfed Aug 9 '11 at 21:38

2 Answers

up vote 11 down vote accepted
public static int[] StringArrToIntArr(String[] s) {
   int[] result = new int[s.length];
   for (int i = 0; i < s.length; i++) {
      result[i] = Integer.parseInt(s[i]);
   }
   return result;
}

Simply iterate through the string array and convert each element.

Note: If any of your elements fail to parse to an int this method will throw an exception. To keep that from happening each call to Integer.parseInt() should be placed in a try/catch block.

share|improve this answer
1  
don't forget the try/catch block – Woot4Moo Aug 9 '11 at 21:30
2  
@Woot, the asker specified that each element is convertible to an int so I intentionally omitted it. – jjnguy Aug 9 '11 at 21:30
1  
Indeed, thanks, exactly what I was looking for! – notfed Aug 9 '11 at 21:39
@notfed, you are welcome. Glad to help. – jjnguy Aug 9 '11 at 21:41
You have a } in place of a { at the start of the for loop. – rossum Aug 9 '11 at 22:03
show 1 more comment

With Guava:

return Ints.toArray(Collections2.transform(Arrays.asList(s), new Function<String, Integer>() {
    public Integer apply(String input) {
        return Integer.valueOf(input);
    }
});

Admittedly this isn't the cleanest use ever, but since the Function could be elsewhere declared it might still be cleaner.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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