Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Split string to equal length substrings in Java

Given the following utility method I have:

/**
 * Splits string <tt>s</tt> into chunks of size <tt>chunkSize</tt>
 *
 * @param s the string to split; must not be null
 * @param chunkSize number of chars in each chuck; must be greater than 0
 * @return The original string in chunks
 */
public static List<String> splitInChunks(String s, int chunkSize) {
    Preconditions.checkArgument(chunkSize > 0);
    List<String> result = Lists.newArrayList();
    int length = s.length();
    for (int i = 0; i < length; i += chunkSize) {
        result.add(s.substring(i, Math.min(length, i + chunkSize)));
    }
    return result;
}

1) Is there an equivalent method in any common Java library (such as Apache Commons, Google Guava) so I could throw it away from my codebase? Couldn't find with a quick look. Whether it returns an array or a List of Strings doesn't really matter.

(Obviously I wouldn't add dependency to some huge framework just for this, but feel free to mention any common lib; maybe I use it already.)

2) If not, is there some simpler and cleaner way to do this in Java? Or a way that is strikingly more performant? (If you suggest a regex-based solution, please also consider cleanness in the sense of readability for non regex experts... :-)

Edit: this qualifies as a duplicate of the question "Split string to equal length substrings in Java" because of this Guava solution which perfectly answers my question!

share|improve this question
I agree it's a duplicate. Or, rather, the question isn't an exact dupe, but the answers contain your beautiful Guava solution which is exactly what I want! – Jonik Nov 4 '10 at 14:42
@seanizer: I did look at Guava's Strings class, but I had completely missed the existence of Splitter. – Jonik Nov 4 '10 at 14:46

marked as duplicate by Jonik, Bill the Lizard Nov 10 '10 at 18:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 4 down vote accepted

You can do this with Guava's Splitter:

 Splitter.fixedLength(chunkSize).split(s)

...which returns an Iterable<String>.

Some more examples in this answer.

share|improve this answer
I don't deserve the credit. I ripped that right out of the OP's code. – jjnguy Nov 4 '10 at 14:41
Of course, I'd dump my own utility method and just use Splitter directly now that I'm aware of it, but thanks for pointing out Guava can do this! – Jonik Nov 4 '10 at 15:02
well if you like it, you should think about accepting it :-) – Sean Patrick Floyd Nov 4 '10 at 15:05
Heh, this is going to be closed, and the answer I'd like to accept is this... Hmm, but wait, let me edit this answer to my liking first, and the I'll give you the extra points. :-) – Jonik Nov 4 '10 at 15:14
There you go :-) – Jonik Nov 4 '10 at 15:19

Mostly a duplicate of http://stackoverflow.com/questions/520907/split-java-string-in-chunks-of-1024-bytes where the idea of turning it into a stream and reading N bytes at a time would seem to meet your need?

Here is a way of doing it with regex (which seems a bit of a sledgehammer for this particular nut)

share|improve this answer

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