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

Revision 60 of this benchmark created on


Setup

var mystring = 'okay.this.is.a.string';
  var dynamicRegex = new RegExp(".", "gm");
  var staticRegex = /\./g;

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
Stored Dynamic Regex
result = mystring.replace(dynamicRegex, " ");
ready
Stored static Regex
result = mystring.replace(staticRegex, " ");
ready

Revisions

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