Page 1 of 1

Regular expression for "item color"

Posted: 26.02.2023, 05:48
by cip60ckby9v6e4syst
How should I write the regular expression if the file name contains [1]?

file type color:
file name [1].jpg
===
*[1]*.jpg (not match) Anything with a 1 in the file name will be processed.
*/[1/]*.jpg (not match)
.*\[1\]\.jpg (not match)


file name (1).jpg
===
*(1)*.jpg (match!)

Re: Regular expression for "item color"

Posted: 28.02.2023, 13:59
by cip60ckby9v6e4syst
solved.

It can be achieved by defining with Define Filter and then selecting with item color.