- Jun
- 1,092
- 48
I wanted to use FSEARCH to find all files that contained the function UNQUOTE but not UNQUOTES, so I used the option
That failed because '[' was interpreted as the start of a character class. I tried escaping it as
It's also worth noting that I got the error messages, such as
/t"@unquote["
That failed because '[' was interpreted as the start of a character class. I tried escaping it as
[ or ^[, but that did not help. I was forced to use a regular expression search instead. It seems to me that there should be some way to override the character class interpretation.It's also worth noting that I got the error messages, such as
TCC: premature end of char-class "(?i)@unquote`[`" , not just once but once for each matching file. And where did the (?i) come from?