Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
RegExp.exec vs String.match vs RegExp.test vs RegExp.match
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1
Browser:
Mobile Safari 16
Operating system:
iOS 16.6.1
Device Platform:
Mobile
Date tested:
2 years ago
Test name
Executions per second
regex.exec
9894733.0 Ops/sec
string.match
9491053.0 Ops/sec
regex.test
11674025.0 Ops/sec
regex.match
6039704.5 Ops/sec
Script Preparation code:
var string = "Hello world!"; var regex = /[A-Z][a-z]+ [a-z]+/;
Tests:
regex.exec
regex.exec(string);
string.match
string.match(regex);
regex.test
regex.test(string);
regex.match
regex[Symbol.match](string);