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).
Thank you!
As discussed in #443, I would like the ability to do something like the following in a
Where:Right now, it is possible to approximate this using
Text.Matches, e.g.: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).
Thank you!