Mask Specific number of characters
Hi,
I'm trying to apply a mask to files, and i know the exact amount of numbers i have in file name.
what is the syntax to accomplish this?
ex:
filename: "Test_12345"
mask: Test_[0-9]{5} - not working
mask: Test_[0-9]* - working
I'm trying to apply a mask to files, and i know the exact amount of numbers i have in file name.
what is the syntax to accomplish this?
ex:
filename: "Test_12345"
mask: Test_[0-9]{5} - not working
mask: Test_[0-9]* - working