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
(literally "a" at least 2 times first match) one of"abcd"
The error is given, " Whoops... you may have found a bug." Followed by the most recent error from a previous query, even if it doesn't make sense for the current query (for example, Unexpected statement:$ when the current query does not contain "$")
If the part after the parentheses is removed so that the line is just:
(literally "a" at least 2 times first match)
There is no error. I've found a valid way to write the original expression,
For this example SRL,
(literally "a" at least 2 times first match) one of"abcd"
The error is given, " Whoops... you may have found a bug." Followed by the most recent error from a previous query, even if it doesn't make sense for the current query (for example, Unexpected statement:$ when the current query does not contain "$")
If the part after the parentheses is removed so that the line is just:
(literally "a" at least 2 times first match)
There is no error. I've found a valid way to write the original expression,
(literally "a" at least 2 times) first match one of"abcd"
https://simple-regex.com/build/60d28737b233c
but this becomes invalid again as soon as a grouping is added
(literally "a" at least 2 times) first match capture(one of"abcd")
citing "Invalid parameter given for
at least
."The text was updated successfully, but these errors were encountered: