You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to compare the performance between different regex operations.
For example I'd like to compare the speed of the following functions
String.search(regex)
-String.match(regex)
Regex.test(string)
-Regex.exec(string)
Profiled functionality
String.search(regex)
-String.match(regex)
Regex.test(string)
-Regex.exec(string)
We can profile performance as the length of the string to search increases
We can also profile different regular expressions that uses different features such as look behind and look ahead
The text was updated successfully, but these errors were encountered:
Profile subject: Regex
Rationale
I'd like to compare the performance between different regex operations.
For example I'd like to compare the speed of the following functions
-String.match(regex)
-Regex.exec(string)
Profiled functionality
-String.match(regex)
-Regex.exec(string)
We can profile performance as the length of the string to search increases
We can also profile different regular expressions that uses different features such as look behind and look ahead
The text was updated successfully, but these errors were encountered: