Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
RegEx.exec vs String.match
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1
Browser:
Mobile Safari 13
Operating system:
iOS 13.2.3
Device Platform:
Mobile
Date tested:
2 years ago
Test name
Executions per second
regex.exec
9940090.0 Ops/sec
string.match
9942040.0 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);