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, regular expression patterns have to be escaped as Rego only supports strings. This makes it somewhat annoying to write policies that depend on regex:
> re_match("\\s\\d\\s", " 1 ")
We should introduce support for regex literals or raw strings so that users can enter patterns without escaping the pattern contents.
The text was updated successfully, but these errors were encountered:
Currently, regular expression patterns have to be escaped as Rego only supports strings. This makes it somewhat annoying to write policies that depend on regex:
We should introduce support for regex literals or raw strings so that users can enter patterns without escaping the pattern contents.
The text was updated successfully, but these errors were encountered: