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
Once SearchValues.Create(ReadOnlySpan<string>, StringComparison) is available, we can use it in Regex to accelerate the search for patterns that begin with alternations, sets, etc.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/area-system-text-regularexpressions
See info in area-owners.md if you want to be subscribed.
Issue Details
Once IndexOfAnyValues.Create(ReadOnlySpan<string>, StringComparison) is available, we can use it in Regex to accelerate the search for patterns that begin with alternations, sets, etc.
SearchValues<string> is being used now by regex for case-insensitive. We can opportunistically add in use for case-sensitive as we find worthwhile cases for it.
Once
SearchValues.Create(ReadOnlySpan<string>, StringComparison)
is available, we can use it inRegex
to accelerate the search for patterns that begin with alternations, sets, etc.The text was updated successfully, but these errors were encountered: