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.
Use remove :
myStrings.remove("Alpha");
Note that this would only remove the first occurrence of "Alpha" from your list.
if this not work
myStrings.remove("Alpha");
try this it works fine with me
int pos = myStrings.indexOf("Alpha");//Getting string position
myStrings.remove(pos);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With