For instance, this
\b[A-Z]+\b
finds words with letters in either uppercase or lowercase.
Am I missing something obvious?
For instance, this
\b[A-Z]+\b
finds words with letters in either uppercase or lowercase.
Am I missing something obvious?
Thanks – that works. I assumed that ST would correctly interpret the regex as is.
It does so. It just sets the (?i)
flag depending on toggle state of case sentitive button.