I have an array, for example:
String [][] test = {{"a","1"},
{"b","1"},
{"c","1"}};
Can someone tell me how to remove an element from an array. For example, I want to remove the "b" element so that the array looks like this:
{{"a","1"},
{"c","1"}}
I can not find a way to do this. What I found here is not working for me yet :(
source
share