| Author |
how to find String array length
|
Mahi Ranga
Ranch Hand
Joined: Jan 27, 2011
Posts: 33
|
|
Hi,
i am facing one problem i.e finding String array length.
my program is :
String str="12345678,12345679";
String arr[]=str.split(",");
when i am printing arr.length it is giving 2.but i want 8 and 8.
|
 |
Mohamed Sanaulla
Bartender
Joined: Sep 08, 2007
Posts: 2926
|
|
Did you try- arr[0].length() and arr[1].length()?
arr is an array of Strings and you want the length of the Strings and not the length of the array.
|
Mohamed Sanaulla | My Blog
|
 |
 |
|
|
subject: how to find String array length
|
|
|