For instance if I hav this array
String[] cars = {"Tesla", "Ford", "Toyota", "Rolls Royce"};
and I would like to remove the "Ford"
. Is there a simple function like cars.strip[1]
to remove it in java?
For instance if I hav this array
String[] cars = {"Tesla", "Ford", "Toyota", "Rolls Royce"};
and I would like to remove the "Ford"
. Is there a simple function like cars.strip[1]
to remove it in java?