Hi,
I want to filter out strings in an array that do not start with the word unit. e.g.
unit1,
foo,
unitYeeHar,
bar,
Monky,
unit,
aunit
Becomes
unit1,
unitYeeHar,
unit
Is there a better way of doing this other then iterating through each element?
Thanks