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

Revision 72 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
replace_long
function replace_long(oldS,newS,fullS) {
   var fullS = fullS != null ? fullS.toString() : '',
      i = 0;

   while (i < fullS.length) {
      if (fullS.substring && fullS.substring(i,i+oldS.length) == oldS) {
         fullS = fullS.substring(0,i)+newS+fullS.substring(i+oldS.length,fullS.length);
         i += newS.length;
      } else {
         i++;
      }
   }
   return fullS;
}

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

Revisions

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