How to split the string "Thequickbrownfoxjumps" to substrings of equal size in Java.
Eg. "Thequickbrownfoxjumps" of 4 equal size should give the output.
["Theq","uick","brow","nfox","jump","s"]
Similar Question:
|
How to split the string
Similar Question:
| |||||||||||||
feedback
|
|
Here's the regex one-liner version:
Both lookbehind and EDIT: I should mention that I don't necessarily recommend this solution if you have other options. The non-regex solutions in the other answers may be longer, but they're also self-documenting; this one's just about the opposite of that. ;) | |||||||||||||
feedback
|
|
Well, it's fairly easy to do this by brute force:
I don't think it's really worth using a regex for this. EDIT: My reasoning for not using a regex:
| |||||||||||||||||||||
feedback
|
|
This is very easy with Google Guava:
Output:
Or if you need the result as an array, you can use this code:
Reference: I played with the idea to create a regex version also, but I couldn't come up with a one-liner for String.split(). And I deleted my previous attempts because the problem was now solved by Alan Moore. But I still agree with the others that regex is not the right tool for this (even though it works). In short: Use Guava's one-liner (most elegant imho) or Alan's one-liner (the answer you were looking for) or Jon Skeet's multiliner (probably most efficient). | |||||
feedback
|
| |||||||
feedback
|
|
If you're using Google's guava general-purpose libraries (and quite honestly, any new Java project probably should be), this is insanely trivial with the Splitter class:
and that's it. Easy as! | |||
|
feedback
|
| |||||
feedback
|
|
You can use
Put it inside a loop and you are good to go. | |||||||||
feedback
|