Wildcards

You can use wildcards to find field values in a file, or filter the selection when selecting files.

Meaning Char Example Finds
Match any number of characters. * R* R, RA, R123, RCH02, etc.
Match any single alphabetic character. ? R?C R1C, R C, ROC, etc.
Match any numbers of characters except zero. + R+ R1, RA, RABC, etc.
Match any string containing a given character. $ $R ARC, ROC, BAR, 94RC02, etc.
Match any string NOT containing a given character. ! !R 1, 20, ABC, etc.