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)
{
... ? ...
}
|
I have a String[], where each element is convertible to an integer. What's the best way I can convert this to an int[]?
|
|||||
|
Simply iterate through the string array and convert each element. Note: If any of your elements fail to parse to an |
|||||||||||||||||
|
|
With Guava:
Admittedly this isn't the cleanest use ever, but since the |
|||
|
|