what would be the least verbose way to remove one item by value from char[] core java 8 > ?
char[] c = new char[] {'a', 'b', 'c'};
I want remove 'b' for egz.
Not especially efficient, but certainly not verbose
char[] c = new char[] {'a', 'b', 'c'};
c = new String(c).replace("b","").toCharArray();
{'a', 'c'}, or maybe something else like array which instead of matching elements have some special values like#for instance{'a', '#', 'c'}?