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']
There is not in the standard Java library, but there is in Apache Commons:
WordUtils.wrap
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With