Digital cameras are just one source that tends to create filenames in all CAPITAL letters. I dislike this and tend to manually change them back to lowercase. Is there a way I can quickly and easily search and select all files within a displayed pane with CAPITAL extensions for renaming via the MRT?
The select box via large + key is not case sensitive, so searching for .DWG or .JPG for example does not filter out those already lowercase.
Thanks
Selecting files with CAPITAL extensions for MRT
Moderators: Hacker, petermad, Stefan2, white
Re: Selecting files with CAPITAL extensions for MRT
When using the select box via large + key, hit the Define button. Then enable Regex and add "(?-i)" to your search pattern for case sensitive matching. For example:DRP535 wrote:The select box via large + key is not case sensitive, so searching for .DWG or .JPG for example does not filter out those already lowercase.
Code: Select all
Search for: (?-i)\.(DWG|JPG)$
- sqa_wizard
- Power Member
- Posts: 3897
- Joined: 2003-02-06, 11:41 UTC
- Location: Germany
Let me add one more:
At "Search" dialog switch to Plugin tab and enter:
Don't forget to select option "OR (any match" if you are using multiple extension values!
Well, one more example how flexible TC is.
There is always more than one solution, just pick the one you like best.
At "Search" dialog switch to Plugin tab and enter:
Code: Select all
tc - ext - cont (case) - DWG
tc - ext - cont (case) - JPG
Well, one more example how flexible TC is.
There is always more than one solution, just pick the one you like best.
#5767 Personal license
Yep.sqa_wizard wrote:Well, one more example how flexible TC is.
There is always more than one solution

Script Content Plugin
"script.ini":
Code: Select all
[Script]
Section=IsUPPERCASE
[IsUPPERCASE]
Script=IsUPPERCASE.vbs
LongName=0
Code: Select all
If filename=UCase(filename) Then
content="Ucase"
Else
content="Mixed"
End if
[x] Search in plugins
[script] [Result] [=] [Ucase]
Regards
Holger