I've been using Everything for almost 5 years now, and I thankful for this wonderful software.. Because I have a habit of Dumping files and then wondering where I kept.
My query is this,
I have files as follows.
Luffy.png
Luffy+Zorro.png
Luffy+Zorro+Nami.png
Luffy+Zorro+Nami+Usopp.png
And so on,
(these are character names and their position on the filename varies randomly).
Requirement is,
I want to list out all the files that have (cases as follows)
Case1: Have just one + in its name (shouldn't include two + )
Case2: Have just two + in its name ( shouldn't include three +)
Case3: Have just three + in its name (shouldn't include four +)
and so on...
I'm not sure if this is possible with just the standard search functionality in everything?
As for regex method,
For Case2
I tried
Code: Select all
\+.+?\+
Please tell me how I can achieve what I want.