We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
regex
Describe the bug regex will prefix with ^, but does not account for regex precedence with |.
^
|
To Reproduce regex "a|b"
regex "a|b"
Expected behavior It should behave as ^(a|b), but the precedence of ^a|b is equivalent to (^a)|b.
^(a|b)
^a|b
(^a)|b