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
Include Files Filter regex
- Posts: 1
- Joined: 16 Dec 2024
-
- Posts: 4290
- Joined: 11 Jun 2019
Regex is not supported
-
- Posts: 2613
- Joined: 22 Aug 2012
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.
*\P????.xlsm
The main difference being that following the first letter P, it meets 4 arbitrary characters, not just 4 digits.