英文:
Java 8 or higher, removing values from char array
问题
以下是翻译好的内容:
什么方法是在 char[] 核心 Java 8 中按值删除一个项的最简洁方式?
char[] c = new char[] {'a', 'b', 'c'};
我想要移除 'b',例如。
英文:
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.
答案1
得分: 3
不特别高效,但绝对不啰嗦
char[] c = new char[] {'a', 'b', 'c'};
c = new String(c).replace("b", "").toCharArray();
英文:
Not especially efficient, but certainly not verbose
char[] c = new char[] {'a', 'b', 'c'};
c = new String(c).replace("b","").toCharArray();
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论