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
any of( (anything never or more capture(digit) ) capture(letter),(anything once or more))
any of( (anything never or more capture(digit) ) capture(letter)(anything once or more))
but without a comma it interprets (anything once or more) as a sub-query for capture(letter) and throws an error:
The SRL Query contains an error: capture does not allow the use of sub-queries.
Unfortunately, "anything once or more" must be wrapped in parentheses (the parentheses are the reason a sub-query is being interpreted) so that the disjunction doesn't treat the quantifier separately.
The text was updated successfully, but these errors were encountered:
With a comma this expression is valid,
any of( (anything never or more capture(digit) ) capture(letter),(anything once or more))
any of( (anything never or more capture(digit) ) capture(letter)(anything once or more))
but without a comma it interprets (anything once or more) as a sub-query for capture(letter) and throws an error:
The SRL Query contains an error:
capture
does not allow the use of sub-queries.Unfortunately, "anything once or more" must be wrapped in parentheses (the parentheses are the reason a sub-query is being interpreted) so that the disjunction doesn't treat the quantifier separately.
The text was updated successfully, but these errors were encountered: