Currently ? is treated as one character for filename.extension (filename+extension)
Wouldn't it be better to improve the use of ?, by treating the ? as one character for filename or extension according to the dot.
So that placing double ?? in SearchBox will give in results not only folders with 2 characters but also files:
ab.exe
12.bat
Seacrh for:
.bmp ??
Results:
ab.bmp
12.bmp
Search for:
abc .b??
Results:
abc.bmp
abc.bat
The wildcard ?
Re: The wildcard ?
I'll consider ? matching only the name part.
For now the user will need to specify exactly what they want:
??|??.*
regex:^..\.[^.]*$
??.bmp
abc.b??
For now the user will need to specify exactly what they want:
??|??.*
regex:^..\.[^.]*$
??.bmp
abc.b??