I have a string s="1,2,3,4,5" . I am using the split() method to split the string then i want to store it into an array of ints.
I tried doing the following but it doesnt work.

int i[]=Integer.parseInt(s.split(","));

I want to know if it is possible to do this without using a loop.

There is something like Array.convertAll in C# but i dont know of a similar thing in java.

link|improve this question

78% accept rate
5  
what's wrong with using a loop? You understand that Array.convertAll is implemented with a loop, right? – Petar Ivanov Dec 15 '11 at 9:01
@Petar Ivanov:- i know that but i am writing this code for a coding competition and in it using loops just kills the score. plus i really wonder how come there is no simple single line soln – yahh Dec 15 '11 at 9:03
1  
@yahh its not something you need to do very often. Whatever you are doing with the int[] will need a loop as well in which case you may find you don't need the int[] – Peter Lawrey Dec 15 '11 at 9:05
@yahh, what is this competition? – Petar Ivanov Dec 15 '11 at 9:08
@Petar Ivanov- techgig.com – yahh Dec 15 '11 at 9:12
show 1 more comment
feedback

5 Answers

up vote 0 down vote accepted

If you don't want to use a loop, you can call a method which does the loop for you.

e.g. (You will need to write the convertToInts method)

int[] ints = convertToInts(s);
link|improve this answer
1  
so wat you are telling me is that there is no inbuilt method – yahh Dec 15 '11 at 9:05
and nothing in Commons-Lang, either .... – Thilo Dec 15 '11 at 9:05
1  
@yahh Not that I know of. I suspect if you want to minimise loops, you can write the code without creating an int[]. – Peter Lawrey Dec 15 '11 at 9:06
feedback

In java there is no such way (method) by which you can directly get a int array by passing String array
So u must write some method to do this...
and if there is condition that you must not have to use loop then ...i write a code by adding some more code in Adel Boutros may u get help from this but its better to you loop.. :)

public class Test {
public static void main(String[] args) {
    String s = "1,2,3,4,5";
    int size = 0;
    int[] arr = new int[s.split(",").length];
    findInt(s, arr, size);
    for (int i = 0; i < arr.length; i++) {

        System.out.println(arr[i]);
    }
}

static void findInt(String s, int[] arr, int index) {
    String aa = null;
    if (s == null) {
        return;
    }
    if (s.length() != 1) {
        String text = s.substring(0, s.indexOf(","));
        arr[index] = Integer.parseInt(text);
    } else {
        arr[index] = Integer.parseInt(s);
    }
    if (s.length() != 1) {
        aa = s.substring(s.indexOf(",") + 1, s.length());
    }
    findInt(aa, arr, ++index);
}

}
link|improve this answer
feedback

In pure Java, there is no way of doing this.

In Apache Commons (especially Commons Lang), there are transform utilities that only take a function with array and do what you want, you don't have to code the loop by yourself.

link|improve this answer
feedback
public static void main (String []args) {
    String s="1,2,3,4,5";
    int size = 0;
    int [] arr = new int [s.length];
    findInt(s, arr, size);
}

void findInt(String s, int [] arr, int index) {
    if (s.isEmpty()) {
        return;
    }
    String text = s.substring(0,s.indexOf(","));
    arr[index] = Integer.parseInt(text);
    findInt(text.substring(1), arr, ++index);
}

PS: My method uses the recursive approach. The variable size will be the actual size of the int array.

link|improve this answer
will you plz run you program ... – Sumit Singh Dec 15 '11 at 9:34
So you just copy paste my approach and make some simple changes and claim it your answer??? – Adel Boutros Dec 15 '11 at 10:08
Do not forget that the purpose here is to provide a roadmap for a solution, if it contains errors, he can fix them. – Adel Boutros Dec 15 '11 at 10:09
feedback

This one will probably fail your contest, but it indeed avoids the loop :)

public static void main(String[] args) throws Exception {
    ScriptEngineManager mgr = new ScriptEngineManager();
    ScriptEngine jsEngine = mgr.getEngineByName("JavaScript");
    String s = "1,2,3,4,5";
    String s1 = s.replaceAll("(\\d+),?", "arr[i++]=$1;");
    int[] arr = new int[s.split(",").length];
    jsEngine.put("arr", arr);
    jsEngine.eval("var i=0;" + s1);
}

The result is an int[] filled with numbers from your String.

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.