Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0
Opera 102
Windows
Desktop
one year ago
Test name Executions per second
replace by regex 4019463.5 Ops/sec
replace via string 11207685.0 Ops/sec
Script Preparation code:
AخA
 
var string = '-firsQWEtDeadlineRQWEeminderData__PS__assignment__PS__perEntityTQWE ype__PS__Applicant__PS__hasDeadline QWE'
var regExp = new RegExp(/QWE|__PS__/gi);
Tests:
  • replace by regex

     
    var res = string.replace(regExp, '.')
  • replace via string

     
    var res = string.replace('__PS__', '').replace('QWE', '')