ImageBulb

Filename Filter Examples

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$
 
Destination Filename Filter
To select the portion of the filename containing digits [0-9]
To select the portion of the filename containing letters [a-zA-Z]
Shortcut to select the portion of the filename containing digits \d