java 拆分sentece并按字母长度分组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 拆分sentece并按字母长度分组相关的知识,希望对你有一定的参考价值。

public static void main(String[] args) {
		String[] string = "you never know what you have until you clean your room".split(" ");
		Map<Integer, List<String>> resultMap = Arrays.stream(string).distinct().collect(Collectors.groupingBy(String::length));
		resultMap.forEach((k,v)-> {
			System.out.printf("The words with lenth of %d %n", k);
			v.forEach(System.out::println);
		});
	}

以上是关于java 拆分sentece并按字母长度分组的主要内容,如果未能解决你的问题,请参考以下文章

PHP:将数据数组拆分为字母顺序

将数组拆分为按对象属性分组的 2 个数组 [重复]

java正则校验,密码必须由字母和数字组成

java正则校验,密码必须由字母和数字组成

java正则校验,密码必须由字母和数字组成

java正则校验,密码必须由字母和数字组成