Say I have a string
String s = bob
and the ArrayList
["alex [available]", "bob [away]", "craig [busy]", "david [gone fishing]"]
How would I search the list to get the element at [1]?
|
Say I have a string
and the ArrayList
How would I search the list to get the element at [1]? |
|||
|
|
|||||
|
|
You have to iterate the list and do a
Maybe you should extend the search term to |
|||||||
|
|
You probably should be using a Map instead of a List. In this case you need to use a loop.
|
|||||||||||||||
|
|
Something like this -
|
||||
|
|
|
Something like this:
|
|||||
|
Replace |
||||