I'm trying to search for files using a regular expression. As a programmer, I'm one of the lucky few who know how to create regexes. I use this one:
Code: Select all
[a-z]{3,4}[0-9]{2}[a-z][0-9]{3}\.jpg
This expression should return files like "asam04a100.jpg" or "gre00c550.jpg", but it doesn't return any file (while in the directory I'm search, there are literally thousands of those files). TC6 also is remarkebly fast with its decision. I mean, in a directory with about 27,500 files it's simply impossible to search using this expression in a fraction of a second.
Maybe TC6 is lacking in support of some part of the expression? Maybe the { and } brackets?