gpt4 book ai didi

Java 8/9 : Can a character in a String be mapped to its indices (using streams)?

转载 作者:IT老高 更新时间:2023-10-28 20:57:23 29 4
gpt4 key购买 nike

给定一个 String schar c ,我很好奇是否存在某种产生 List<Integer> list 的方法来自 s (其中 list 内的元素表示 cs 的索引)。

一个接近但不正确的方法是:

public static List<Integer> getIndexList(String s, char c) {
return s.chars()
.mapToObj(i -> (char) i)
.filter(ch -> ch == c)
.map(s::indexOf) // Will obviously return the first index every time.
.collect(Collectors.toList());
}

以下输入应产生以下输出:

getIndexList("Hello world!", 'l') -> [2, 3, 9]

最佳答案

可以通过 IntStream 完成

public static List<Integer> getIndexList(String s, char c) {
return IntStream.range(0, s.length())
.filter(index -> s.charAt(index) == c)
.boxed()
.collect(Collectors.toList());
}

关于Java 8/9 : Can a character in a String be mapped to its indices (using streams)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48592263/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com