I can successfully search for names that end with a return or tab character like this: 'coffee[\r\t]' or words that are at the end of the text, like this 'coffee$' How would I search for all with a single search? I've tried the OR character 'coffee[\r\t] | $' and other variants without success. Of course I can do two separate searches and OR them, but that's ugly. Any