vectors
im using a vector to store some dictionary information and have the following if statement
if (dictionary.contains(new String (x)))
{
System.out.println("Found");
}
This works fine but i want to find out the element it was found at, any ideas on how to do this?

