In JavaScript this is how we can split a string at every 3-rd character
"foobarspam".match(/.{1,3}/g)
I am trying to figure out how to do this in Java. Any pointers?
|
|
You could do it like this:
which produces:
The regex |
|||||||||||||||||||
|
|
Java does not provide very full-featured splitting utilities, so the Guava libraries do:
Check out the javadoc for Splitter; it's very powerful. |
|||||||||
|
|
|||||||||||
|