【发布时间】:2011-09-23 11:08:48
【问题描述】:
String input = "THESE TERMS AND CONDITIONS OF SERVICE (the Terms) ARE A LEGAL AND BINDING AGREEMENT BETWEEN YOU AND NATIONAL GEOGRAPHIC governing your use of this site, www.nationalgeographic.com, which includes but is not limited to products, software and services offered by way of the website such as the Video Player, Uploader, and other applications that link to these Terms (the Site). Please review the Terms fully before you continue to use the Site. By using the Site, you agree to be bound by the Terms. You shall also be subject to any additional terms posted with respect to individual sections of the Site. Please review our Privacy Policy, which also governs your use of the Site, to understand our practices. If you do not agree, please discontinue using the Site. National Geographic reserves the right to change the Terms at any time without prior notice. Your continued access or use of the Site after such changes indicates your acceptance of the Terms as modified. It is your responsibility to review the Terms regularly. The Terms were last updated on 18 July 2011.";
//text copied from http://www.nationalgeographic.com/community/terms/
我想把这个大字符串分成几行,每行的内容不应超过 MAX_LINE_LENGTH 个字符。
到目前为止我尝试了什么
int MAX_LINE_LENGTH = 20;
System.out.print(Arrays.toString(input.split("(?<=\\G.{MAX_LINE_LENGTH})")));
//maximum length of line 20 characters
输出:
[THESE TERMS AND COND, ITIONS OF SERVICE (t, he Terms) ARE A LEGA, L AND B ...
它会导致断词。我不想要这个。 而不是我想得到这样的输出:
[THESE TERMS AND , CONDITIONS OF , SERVICE (the Terms) , ARE A LEGAL AND B ...
又添加了一个条件: 如果单词长度大于 MAX_LINE_LENGTH,则该单词应该被拆分。
并且解决方案应该没有外部罐子的帮助。
【问题讨论】:
-
@hammer - 我的客户不希望我使用任何外部 jar 文件。在没有任何外部 jar 文件的情况下,我在您提到的那个线程中没有得到任何解决方案。
标签: java regex string split word-wrap