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

Revision 65 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(/[^a-z0-9]/gi, '@');
ready
.replace(new RegExp(".","gm")," ")
result = mystring.replace(new RegExp(".","gm")," ");
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.