up vote 39 down vote favorite
16
share [g+] share [fb]

What is the best or most concise method for returning a string repeated an arbitrary amount of times?

The following is my best shot so far:

function repeat(s, n){
    var a = [];
    while(a.length < n){
        a.push(s);
    }
    return a.join('');
}
link|improve this question

79% accept rate
feedback

10 Answers

up vote 91 down vote accepted

I'd put this function onto the String object directly. Instead of creating an array, filling it, and joining it with an empty char, just create an array of the proper length, and join it with your desired string. Same result, less process!

String.prototype.repeat = function( num )
{
    return new Array( num + 1 ).join( this );
}

alert( "string to repeat\n".repeat( 4 ) );
link|improve this answer
11  
I try not to extend native objects, but otherwise this is a beautiful solution. Thanks! – brad Oct 14 '08 at 20:22
3  
@ brad - why not? You'd rather pollute the global namespace with a function that has a fairly well-defined home (the String object)? – Peter Bailey Oct 14 '08 at 21:18
5  
Actually, both of your arguments apply to the global namespace as well. If I'm going to expand a namespace and have potential collisions, I'd rather do it 1) not in global 2) in one that is relevant and 3) is easy to refactor. This means putting it on the String prototype, not in global. – Peter Bailey Oct 16 '08 at 22:49
4  
one change I'd make to this function would be to put parseInt() around "num", since if you have a numeric string, you might get strange behaviour due to JS's type juggling. for example: "my string".repeat("6") == "61" – nickf May 19 '09 at 2:28
1  
If you don't want to extend native objects, you could put the function on the String object instead, like this: String.repeat = function(string, num){ return new Array(parseInt(num) + 1).join(string); };. Call it like this: String.repeat('/\', 20) – Znarkus Aug 31 '10 at 14:51
show 4 more comments
feedback

I've tested the performance of all the proposed approaches.

Here is the fastest variant i've got.

String.prototype.repeat = function(count) {
    if (count < 1) return '';
    var result = '', pattern = this.valueOf();
    while (count > 0) {
        if (count & 1) result += pattern;
        count >>= 1, pattern += pattern;
    };
    return result;
};

Or as stand-alone function:

function repeat(pattern, count) {
    if (count < 1) return '';
    var result = '';
    while (count > 0) {
        if (count & 1) result += pattern;
        count >>= 1, pattern += pattern;
    };
    return result;
};

It is based on artistoex algorithm. It is really fast. And the bigger the count, the faster it goes compared with the traditional [].join() approach.

I've only changed 2 things:

  1. replaced pattern = this with pattern = this.valueOf() (clears one obvious type conversion);
  2. added if (count < 1) check from prototypejs to the top of function to exclude unnecessary actions in that case.

UPD

Created a little performance-testing playground here for those who interested.

variable count ~ 0 .. 100:
Testing performance of different variants of String.repeat()

constant count = 1024:
Testing performance of different variants of String.repeat()

Use it and make it even faster if you can :)

link|improve this answer
thanks for sharing. +1 – Trev Norris Oct 4 '11 at 17:09
feedback

Expanding P.Bailey's solution:

String.prototype.repeat = function(num) {
    return new Array(isNaN(num)? 1 : ++num).join(this);
    }

This way you should be safe from unexpected argument types:

var foo = 'bar';
alert(foo.repeat(3));              // Will work, "barbarbar"
alert(foo.repeat('3'));            // Same as above
alert(foo.repeat(true));           // Same as foo.repeat(1)

alert(foo.repeat(0));              // This and all the following return an empty
alert(foo.repeat(false));          // string while not causing an exception
alert(foo.repeat(null));
alert(foo.repeat(undefined));
alert(foo.repeat({}));             // Object
alert(foo.repeat(function () {})); // Function

EDIT: Credits to jerone for his elegant ++num idea!

link|improve this answer
1  
Changed your's a little: String.prototype.repeat = function(n){return new Array(isNaN(n) ? 1 : ++n).join(this);} – jerone Jul 13 '10 at 17:44
Perfect! I'll update my post. Thanks, jerone! – U-D13 Jul 14 '10 at 12:19
Anyway according to this test (jsperf.com/string-repeat/2) doing a simple for loop with string concatanation seems to be way faster on Chrome compared to using Array.join. Isn't it funny?! – Marco Demaio Mar 26 '11 at 14:43
feedback

This one is pretty efficient

String.prototype.repeat = function(times){
    var result="";
    var pattern=this;
    while (times > 0) {
        if (times&1)
            result+=pattern;
        times>>=1;
        pattern+=pattern;
    }
    return result;
};
link|improve this answer
feedback
function repeat(s, n) { var r=""; for (var a=0;a<n;a++) r+=s; return r;}
link|improve this answer
1  
Isn't string concatenation costly? That's at least the case in Java. – Vijay Dev Aug 17 '09 at 17:29
Why yes they are. However, it can't really be optimized in javarscript. :( – McTrafik Mar 16 '11 at 18:17
What about this performance improvent: var r=s; for (var a=1;... :)))) Anyway according to this test (jsperf.com/string-repeat/2) doing a simple for loop with string concatanation like what you suggested seems to be way faster on Chrome compared to using Array.join. – Marco Demaio Mar 26 '11 at 14:39
@VijayDev - not according to this test: jsperf.com/ultimate-concat-vs-join – jbyrd Oct 4 '11 at 14:44
feedback
/**  
@desc: repeat string  
@param: n - times  
@param: d - delimiter  
*/

String.prototype.repeat = function (n, d){
   return --n
     ? this+d+this.repeat(n,d)
     : ''+this
}

this is how to repeat string several times using delimeter.

link|improve this answer
feedback

This may be the smallest recursive one:-

String.prototype.repeat = function(n,s) {
s = s || ""
if(n>0) {
   s += this
   s = this.repeat(--n,s)
}
return s}
link|improve this answer
Nice one, what about jsfiddle.net/Rqcf7? A little smallened. :) – pimvdb Jul 2 '11 at 20:37
feedback

Or use prototypejs:

http://prototypejs.org/api/string/times

link|improve this answer
1  
URL now: prototypejs.org/api/string/times – Neil Jul 29 '10 at 9:28
@Neil: Edited the link. – pimvdb Jul 2 '11 at 20:38
feedback

Tests of the various methods:

var repeatMethods = {
    control: function (n,s) {
        /* all of these lines are common to all methods */
        if (n==0) return '';
        if (n==1 || isNaN(n)) return s;
        return '';
    },
    divideAndConquer:   function (n, s) {
        if (n==0) return '';
        if (n==1 || isNaN(n)) return s;
        with(Math) { return arguments.callee(floor(n/2), s)+arguments.callee(ceil(n/2), s); }
    },
    linearRecurse: function (n,s) {
        if (n==0) return '';
        if (n==1 || isNaN(n)) return s;
        return s+arguments.callee(--n, s);
    },
    newArray: function (n, s) {
        if (n==0) return '';
        if (n==1 || isNaN(n)) return s;
        return (new Array(isNaN(n) ? 1 : ++n)).join(s);
    },
    fillAndJoin: function (n, s) {
        if (n==0) return '';
        if (n==1 || isNaN(n)) return s;
        var ret = [];
        for (var i=0; i<n; i++)
            ret.push(s);
        return ret.join('');
    },
    concat: function (n,s) {
        if (n==0) return '';
        if (n==1 || isNaN(n)) return s;
        var ret = '';
        for (var i=0; i<n; i++)
            ret+=s;
        return ret;
    },
    artistoex: function (n,s) {
        var result = '';
        while (n>0) {
            if (n&1) result+=s;
            n>>=1, s+=s;
        };
        return result;
    }
};
function testNum(len, dev) {
    with(Math) { return round(len+1+dev*(random()-0.5)); }
}
function testString(len, dev) {
    return (new Array(testNum(len, dev))).join(' ');
}
var testTime = 1000,
    tests = {
        biggie: { str: { len: 25, dev: 12 }, rep: {len: 200, dev: 50 } },
        smalls: { str: { len: 5, dev: 5}, rep: { len: 5, dev: 5 } }
    };
var testCount = 0;
var winnar = null;
var inflight = 0;
for (var methodName in repeatMethods) {
    var method = repeatMethods[methodName];
    for (var testName in tests) {
        testCount++;
        var test = tests[testName];
        var testId = methodName+':'+testName;
        var result = {
            id: testId,
            testParams: test
        }
        result.count=0;

        (function (result) {
            inflight++;
            setTimeout(function () {
                result.start = +new Date();
                while ((new Date() - result.start) < testTime) {
                    method(testNum(test.rep.len, test.rep.dev), testString(test.str.len, test.str.dev));
                    result.count++;
                }
                result.end = +new Date();
                result.rate = 1000*result.count/(result.end-result.start)
                console.log(result);
                if (winnar === null || winnar.rate < result.rate) winnar = result;
                inflight--;
                if (inflight==0) {
                    console.log('The winner: ');
                    console.log(winnar);
                }
            }, (100+testTime)*testCount);
        }(result));
    }
}
link|improve this answer
feedback

Recursive solution using divide and conquer:

function repeat(n, s) {
    if (n==0) return '';
    if (n==1 || isNaN(n)) return s;
    with(Math) { return repeat(floor(n/2), s)+repeat(ceil(n/2), s); }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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