如何根据长度将单词切成字符串
String text = "Hello world welcome";
如果您使用substring方法,那么行的最大大小必须为15个字符
Hello wordl wel
come
不应该那样,应该那样
Hello wordl
welcome
答案 0 :(得分:2)
使用Apache Commons Text WordUtils.wrap()
方法:
String out = WordUtils.wrap("Hello world welcome", 15);
System.out.println(out);
将输出:
Hello world
welcome