我收到了一个包含数字和单词的文字。
如何从每个数字中获取以该数字开头的文本中的数字?
我想在这里使用Java Streams。
我设法过滤了所有数字:
Files.lines(Paths.get("/path/to/file/text.txt"))
.filter(Pattern.compile("\\d+").asPredicate())
但这是艰难的部分。如何计算每个数字以它开头的数字?
答案 0 :(得分:3)
您可以在过滤后按初始字符进行分组,并将数据放入Map<Character,Integer>
:
Map<Character,Integer> digCount = Files
.lines(Paths.get("/path/to/file/text.txt"))
.filter(Pattern.compile("\\d+").asPredicate())
.collect(Collectors.groupingBy(s -> s.charAt(0), Collectors.summingInt(s->1)));
for (Map.Entry<Character,Integer> e : digCount.entrySet()) {
System.out.println(e.getKey()+" "+e.getValue());
}