.replace() vs. .split().join() vs .replaceAll() (v68)

Revision 68 of this benchmark created on


Setup

var mystring = 'okay.this.is.a.string';

Test runner

Ready to run.

Testing in
TestOps/sec
.replace(/\./g,' ')
result = mystring.replace(/\./g,' ');
ready
.replace(new RegExp(".","gm")," ")
result = mystring.replace(new RegExp(".","gm")," ");
ready
.split('.').join(' ')
result = mystring.split('.').join(' ');
ready
findReplaceMultiple
function strReplaceAll(s, stringToFind, stringToReplace) {
    if (stringToFind === stringToReplace) return s;
    for (var index = s.indexOf(stringToFind); index !== -1; index = s.indexOf(stringToFind))
        s = s.replace(stringToFind, stringToReplace);
    return s;
}

result = strReplaceAll(mystring, '.', ' ');
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.