I'd like to break up large words (say 10 characters or more) found in a string into multiple lines. For example I'd like to convert

I will not stand for this antidisestablishmentarianism!

to

I will not stand for this antidisest
ablishment
arianism!

Thanks in advance for your help!

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted
String str = "I will not stand for this antidisestablishmentarianism!"

def newStr = (str =~ /(\w{10})/).replaceAll("\$1\n")

println newStr

The 10 determines the length of words to be split up

link|improve this answer
2  
The string can also be splitted using String#replaceAll(Pattern, String), like str.replaceAll(/(\w{10})/, "\$1\n"). – epidemian Jan 10 at 1:19
feedback

In addition to Nik's answer, you may be interested in alternative solutions.

I don't know what is your exact task, but sometimes hyphenation can be more natural.


Check out Hyphenator, Javascript library for client-side hyphenation.

Usage example: http://hyphenator.googlecode.com/svn/tags/Version%204.0.0/WorkingExample.html


Also check out Hyphenation CSS3 properties: http://www.w3.org/TR/css3-text/#hyphenation


Also consider CSS3 overflow-wrap property, that forces words to break in the middle if there is no choice:

overflow-wrap: break-word;

Legacy alternative name for overflow-wrap:

word-wrap: break-word;

Usage example: http://www.webdesignerwall.com/demo/word-wrap/

link|improve this answer
Thanks to Nik and everyone else. Praises sung over at code.christophervigliotti.com/2012/01/… – Christopher Vigliotti Jan 10 at 16:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.