Label folders that start with a number

Hi,

how to label folders with 1_-10_ in Name (e.g. 1_Test, 5_Test2)?

You could use a regular expression like ^\d+_.* to match any name which starts with one or more digits followed by an underscore.

Works perfect, thank you.

1 Like