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

Revision 25 of this benchmark created by joequincy 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
String replace
result = mystring.replace('.',' ');
ready
String replace global
result = mystring.replace('.',' ',g);
ready

Revisions

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