Closed syphax-bouazzouni closed 1 year ago
Make the REGEX filter not sensitive by adding the "i" flag, so that for example it will match the terms "test", "Test", "TEST",... for a given attribute.
REGEX(pattern , value) # case sensitive
REGEX(pattern , value, 'i') # no-case sensitive
Changes
Make the REGEX filter not sensitive by adding the "i" flag, so that for example it will match the terms "test", "Test", "TEST",... for a given attribute.
Before
After