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

I would like to split a very large string (lets say, 10 000 characters) into N-size chunks.

What would be the best way in terms of performance to do this?

For instance: "1234567890" split by 2 would become {"12","34","56","78", "9"}

Would something like this be possible using the string.match and if so, would that be the best way to do it in terms of performance?

Thanks,

tribe84

share|improve this question

6 Answers

up vote 29 down vote accepted

You can do something like this:

"1234567890".match(/.{1,2}/g);

Which gives you:

["12", "34", "56", "78", "90"]

And:

"123456789".match(/.{1,2}/g);

gives you:

["12", "34", "56", "78", "9"]

In general, for any string out of which you want to extract n-sized substrings, you would do:

str.match(/.{1,n}/g); //replace n with the size of the substring

As far as performance, I tried this out with approximately 10k characters and it took a little over a second on Chrome. YMMV.

share|improve this answer
3  
Bravo! This is much nicer than the procedural version I had. – Alex Moore May 17 '12 at 20:23
1  
Oh, this is awesome! – Camilo Martin Mar 27 at 18:18

Bottom line:

  • match is very ineffective, slice is better, on Firefox substr/substring is better still
  • match is even more ineffective for short strings (even with cached regex - probably due to regex parsing setup time)
  • match is even more ineffective for large chunk size (probably due to inability to "jump")
  • for longer strings with very small chunk size, match outperforms slice on older IE but still loses on all other systems
  • jsperf rocks
share|improve this answer
var str = "123456789";
var chunks = [];
var chunkSize = 2;

while (str) {
    if (str.length < chunkSize) {
        chunks.push(str);
        break;
    }
    else {
        chunks.push(str.substr(0, chunkSize));
        str = str.substr(chunkSize);
    }
}

alert(chunks); // chunks == 12,34,56,78,9
share|improve this answer

This is the fastest, most performant solution:

function chunkString(str, len) {
  var _size = Math.ceil(str.length/len),
      _ret  = new Array(_size)
  ;

  for (var _i=0; _i<_size; _i++) {
    _ret[_i] = str.substring(_i*len, len);
  }

  return _ret;
}

Compare it to the others; I win :)

share|improve this answer
your formula is not correct, you need to specify the start and end point, rather than start and length, try... str.substring(_i * len, _i * len + len) – Billy Moon Apr 1 at 13:00
var l = str.length, lc = 0, chunks = [], c = 0, chunkSize = 2;
for (; lc < l; c++) {
  chunks[c] = str.slice(lc, lc += chunkSize);
}
share|improve this answer

I would use a regex...

var chunkStr = function(str, chunkLength) {
    return str.match(new RegExp('[\\s\\S]{1,' + +chunkLength + '}', 'g'));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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