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

Is there anyway to get indexOf like you would get in a string.

output.add("1 2 3 4 5 6 7 8 9 10);  
String bigger[] = output.get(i).split(" ");
int biggerWher = bigger.indexOf("10");

I wrote this code but its returning an error and not compiling! Any advice ?

share|improve this question
2  
Hope you have specific programming language? – CharithJ Jun 6 '11 at 8:45
Looks like Java to me... – aioobe Jun 6 '11 at 8:46
possible duplicate of Where is Java's Array indexOf? – Stephen C Jun 6 '11 at 9:20

5 Answers

up vote 8 down vote accepted

Use this ...

output.add("1 2 3 4 5 6 7 8 9 10");  
String bigger[] = output.get(i).split(" ");
int biggerWher = Arrays.asList(bigger).indexOf("3");
share|improve this answer

When the array is an array of objects, then:

Object[] array = ..
Arrays.asList(array).indexOf(someObj);

Another alternative is org.apache.commons.lang.ArrayUtils.indexOf(...) which also has overloads for arrays of primitive types, as well as a 3 argument version that takes a starting offset. (The Apache version should be more efficient because they don't entail creating a temporary List instance.)

share|improve this answer
Why do I keep forgetting that most collection-methods apply to arrays too by using asList.... +1 – aioobe Jun 6 '11 at 9:20

Arrays do not have an indexOf() method, java.util.List has. So you can wrap your array in a list and use the List methods (except for add() and the like):

output.add("1 2 3 4 5 6 7 8 9 10);  
String bigger[] = output.get(i).split(" ");
int biggerWher = Arrays.asList(bigger).indexOf("10");
share|improve this answer

You can use java.util.Arrays.binarySearch(array, item); That will give you an index of the item, if any...

Please note, however, that the array needs to be sorted before searching.

Regards

share|improve this answer

output.add("1 2 3 4 5 6 7 8 9 10"); you miss a " after 10

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.