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
Right now boolean expressions parser is quite simple. It transforms a string like "pattern a" OR "pattern b" into expression p_1 OR p_2, using the fact that all sub-patterns must be enclosed in quotes. However, for simple cases when there are no spaces or special characters in sub-patterns, enclosing it in quotes should not be required.
The text was updated successfully, but these errors were encountered:
Right now boolean expressions parser is quite simple. It transforms a string like
"pattern a" OR "pattern b"
into expressionp_1 OR p_2
, using the fact that all sub-patterns must be enclosed in quotes. However, for simple cases when there are no spaces or special characters in sub-patterns, enclosing it in quotes should not be required.The text was updated successfully, but these errors were encountered: