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

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

Regina
- 115
- 4
- 13
1 Answers
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
-
Thank you again :) – Regina Oct 14 '16 at 15:38