I have this four files:
Day 1 Jason Capital's STATUS.mp4
Day 10 Jason Capital's STATUS.mp4
Day 11 Jason Capital's STATUS.mp4
Day 2 Jason Capital's STATUS.mp4
I want to select day 1 and 2 only so I use "Day ? *.*", but it selects all.
Day 10 Jason Capital's STATUS.mp4 and Day 11 Jason Capital's STATUS.mp4 clearly do not match the string, as they are actually "day ?? *.*".
Or I'm missing something?
Select group bug?
Moderators: Hacker, petermad, Stefan2, white
* matches any number of characters, so despite ? doesn't select the two-digit files * does.
Regards
Dalai
Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
But you can use regex for selecting:
FROM:
Day 1 Jason Capital's STATUS.mp4
Day 10 Jason Capital's STATUS.mp4
Day 11 Jason Capital's STATUS.mp4
Day 2 Jason Capital's STATUS.mp4
Select:
Day 1 Jason Capital's STATUS.mp4
Day 2 Jason Capital's STATUS.mp4
USE e.g.:
<Day \d\D
or more common:
<\w+ \d\D
- - -
[face=timesnewroman]BTW:
to sort like
Day 1 Jason Capital's STATUS.mp4
Day 2 Jason Capital's STATUS.mp4
Day 10 Jason Capital's STATUS.mp4
Day 11 Jason Capital's STATUS.mp4
USE:
Preferences > Display > Natural sorting...[/face]
Ah, it's different than I thought. TC separates words (file types in this case) on spaces, so it selects the file "day", any file with one character (?), and any file (*.*). That's why all files are selected.
Example: Have some files of mixed types in any directory and type in the selection dialog "*.cmd *.au3" (without the quotes). TC selects all au3 files and all cmd files.
So, to solve your problem, you have to use quotes: "day ? *.*" (including the quotes!). This is also true for the CMD, btw.
Regards
Dalai
Example: Have some files of mixed types in any directory and type in the selection dialog "*.cmd *.au3" (without the quotes). TC selects all au3 files and all cmd files.
So, to solve your problem, you have to use quotes: "day ? *.*" (including the quotes!). This is also true for the CMD, btw.
Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror