I have a string arraylist
ArrayList<String> data = new ArrayList<String>();
and I have stored string values inside. Now i want to do something like
data.get(0) == "a" // (need to compare)
How can I do? please help out.
|
I have a string arraylist
and I have stored string values inside. Now i want to do something like
How can I do? please help out. |
||||
|
|
|
use |
|||||||
|
|
Here is some code to play with:
To check for equality:
To check for order:
|
|||
|
|
You should really use generics:
|
|||
|
|
|
So this is basic operations on Array and String. You have answer for your questions in Michal's post. But you can read some guide about it and do it by yourself Oracle have nice tutorial about Arrays and for String you can find "String comparison" or just find method to compare in documentation String class in Java 1.6 |
|||
|
|