Regex question
I am trying to select books that have a three-character string in upper-case in the title.
I tried title:"~[A-Z][A-Z][A-Z]" but this selects most of the books in the library, irrespective of whether the title strings are upper- or lower- case.
Is there a way to make the selection respect the case ?
|