ontoportal-lirmm / goo

Graph Oriented Objects (GOO) for Ruby. A RDF/SPARQL based ORM.
http://ncbo.github.io/goo/
Other
0 stars 4 forks source link

Feature: Make the regex filter no-case sensitive #33

Closed syphax-bouazzouni closed 1 year ago

syphax-bouazzouni commented 1 year ago

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

REGEX(pattern , value) # case sensitive 

After

REGEX(pattern , value, 'i') # no-case sensitive