vote up 1 vote down star

The Python standard lib comes with the module textwrap which provides a simple text wrapping functionality. Is there something comparable in the java standard library?

in Python it is something like this:

>>> t = "a really really long string with lots of characters"
>>> import textwrap
>>> textwrap.wrap(t, 20)
['a really really long', 'string with lots of', 'characters']
flag

46% accept rate
could you add an example of the feature in Python? – danb Oct 13 '08 at 15:14

1 Answer

vote up 6 vote down check

There is not in the standard Java library, but there is in Apache Commons:

WordUtils.wrap

link|flag

Your Answer

Get an OpenID
or

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