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

Revision 67 of this benchmark created by taheta on


Setup

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

Test runner

Ready to run.

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

Revisions

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