String[] string = {"Terms of service are the legal agreements between a service provider and a person who wants to use that service.", "The person must agree to abide by the terms of service in order to use the offered service."};
任何人都知道如何使字符串数组中的字符串数组元素在达到最大长度时拆分成新行,比如20行。
发布于 2021-04-14 18:49:24
您可以结合使用String#split
和Stream#flatMap
。
int maxLen = 20;
String[] res = Arrays.stream(arr).flatMap(s ->
Arrays.stream(s.split("(?<=\\G.{" + maxLen + "})"))).toArray(String[]::new);
// Separate each element based on the maximum length
System.out.println(Arrays.toString(res));
https://stackoverflow.com/questions/67097239
复制相似问题