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

Revision 17 of this benchmark created on


Setup

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

Test runner

Ready to run.

Testing in
TestOps/sec
.replace(/\./g,' ')
result = mystring.replace(/\./g,' ');
ready
.replace(old," ")
result = mystring.replace(old," ");
ready
.split('.').join(' ')
result = mystring.split('.').join(' ');
ready

Revisions

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