hi dere,
i have a question.
i have an array with replicating values.... al i want to do is
delete all replicating values and store the result in another array.
eg.,
String[] a={1,2,3,3};
String []b;
b should be 1.2.3only...... ..not 1,2,3,3
thanks in advance,
regards,
aswath.n.s
(knowledge is power)
i have a question.
i have an array with replicating values.... al i want to do is
delete all replicating values and store the result in another array.
eg.,
String[] a={1,2,3,3};
String []b;
b should be 1.2.3only...... ..not 1,2,3,3
thanks in advance,
regards,
aswath.n.s
(knowledge is power)
Comment