jeudi 2 avril 2015

Remove a String Item from a List of Strings

How do I remove a specific string from a List that contains Strings....


As in:



ArrayList<String> myStrings = new ArrayList<>();
myStrings.add("Alpha");
myStrings.add("Beta");
myStrings.add("Gama");
. //The order can be random
.
.
.


Now , I only have the list myStrings and I don't know which String is at which index. But I know, that I want to display all the strings after removing say "Alpha".


To Summarize , How can I get the strings from a String array after removing a String that I know that array contains , but don't know its index/position.


Aucun commentaire:

Enregistrer un commentaire