Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
replace regex global vs replaceAll with string vs replaceAll with regex
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
Browser:
Chrome 135
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
one year ago
Test name
Executions per second
replace regex global
20553416.0 Ops/sec
replaceAll with string
14823385.0 Ops/sec
replaceAll with regex
13405797.0 Ops/sec
Tests:
replace regex global
"010-1234-5678".replace(/-/g, "");
replaceAll with string
"010-1234-5678".replaceAll("-", "");
replaceAll with regex
"010-1234-5678".replaceAll(/-/g, "");