Closed lukedoomer closed 2 years ago
matches
works with a Go regular expression: https://pkg.go.dev/regexp/syntax@master
So you can use this kind of expression: Title matches "(?i)HeLLoWoRLD"
in
is not insensitive. However I will consider adding string manipulation functions such as toLower or toUpper as I already did in another project (https://github.com/ncarlier/readflow/blob/master/pkg/rule-engine/processor.go#L70)
In other words, how to make matches and include in EXPR engine work in case insensitive?