tags:

views:

807

answers:

1

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']
+6  A: 

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

WordUtils.wrap

Brandon DuRette