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

Revision 37 of this benchmark created on


Setup

var mystring = 'okay.this.is.a.string';
  var re = new RegExp("\.", "gm");

Test runner

Ready to run.

Testing in
TestOps/sec
.replace(/\./g,' ')
result = mystring.replace(/\./g, ' ');
ready
.replace(new RegExp(".","gm")," ")
result = mystring.replace(re, ' ');
ready
.split('.').join(' ')
result = mystring.split('.').join(' ');
ready
g.replace('.',' ')
result = mystring;
while (~result.indexOf('.')) {
  result = result.replace('.', ' ');
}
ready

Revisions

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