Source Filename Filter |
To select all filenames containing "abc" (not "ABC") |
abc |
To select all filenames beginning "abc" |
^abc |
To select all filenames ending "xyz" |
xyz$ |
To select all filenames equal to "abc" |
^abc$ |
To select all filenames containing a digit |
[0-9] |
To select all filenames containing a letter |
[a-zA-Z] |
Shortcut to select all filenames containing a digit |
\d |
To select all filenames containing nothing but digits (one or more) |
^\d*$ |
To select all filenames containing one or more digits followed by and ending with "xyz" |
^\d*xyz$ |