I am trying to compare a string to an array of strings and add the string to the array if it is already not in the array.
I tried
String [] array =new String [100]
for (int i=0; i<counter; i++){
if(!str.equals(arry[i])){
array[i]=str;
counter++;
}
}
It doesn't seem to work.
So basicaly if array = (mike, john, tom, bob);
and the new string is tony, it is supposed to compare tony to the array and add it to the array. But if the next string is mike, not add it to the array as it is already in the list.