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
As discussed in #443, I would like the ability to do something like the following in a Where:
m["msg"].Value.String().Matches(`^[A-Z]`)
Right now, it is possible to approximate this using Text.Matches, e.g.:
m["msg"].Text.Matches(`^"[A-Z]`)
However, this has the disadvantage of requiring you to handle the different kinds of string literals (or, more likely, only handle the most common case as above).