Include Files Filter regex

Discuss new features and functions
Posts: 1
Joined: 16 Dec 2024

mannyp02

Are we able to have regex statements for Include filter.
Eg. ^P\d{4}\.xlsm = would only include files that start with letter P followed with 4 digits and file extension of xlsm
User avatar
Posts: 4290
Joined: 11 Jun 2019

xCSxXenon

Regex is not supported
User avatar
Posts: 2613
Joined: 22 Aug 2012

Plerry

Although unfortunately RegEx is not (yet?) supported, for your described use-case you come close by defining an Include Filter of
*\P????.xlsm
The main difference being that following the first letter P, it meets 4 arbitrary characters, not just 4 digits.