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
Currently grouping occurs when the alternation is applied. This results in regexes with just the alternation, ex: "aa" | "bb", being grouped, i.e. (?:aa|bb), even though the grouping is not needed, aa|bb. Ideally, this grouping only applies if it is necessary, ex: ("aa" | "bb") + "c" = (?:aa|bb)c.
The text was updated successfully, but these errors were encountered:
Currently grouping occurs when the alternation is applied. This results in regexes with just the alternation, ex:
"aa" | "bb"
, being grouped, i.e.(?:aa|bb)
, even though the grouping is not needed,aa|bb
. Ideally, this grouping only applies if it is necessary, ex:("aa" | "bb") + "c"
=(?:aa|bb)c
.The text was updated successfully, but these errors were encountered: