I have an ArrayList that's populated with sentences but need certain elements to be removed based on if they contain a certain integer.
Here's what my ArrayList looks like
[Savings 12345678 0.60, Checking 98765432 0.01, Deposit 98765432 300, Transfer 98765432 12345678 300]
I want to remove elements that include 98765432
(Checking 98765432 0.01, Deposit 98765432 300, and Transfer 98765432 12345678 300)
but keep Savings 12345678 0.60.