-1

How to change this String expression so the rule it will be case insensitive join("$yourSentenceColumn$ MATCHES \".*?\\Q", removeChars($yourTermColumn$, "\""), "\\E.*\" => TRUE")?

Gábor Bakos
  • 8,982
  • 52
  • 35
  • 52
Regina
  • 115
  • 4
  • 13

1 Answers1

0

The following String Manipulator expression should do what you need:

join("$document$ MATCHES \"(?i).*?\\Q", removeChars($term$, "\""), "\\E.*\" => TRUE")

Note the (?i) part, it makes the regular expression case insensitive: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#CASE_INSENSITIVE

Gábor Bakos
  • 8,982
  • 52
  • 35
  • 52