Multi-rename uppercase LAST letter only, don't touch others

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
fidofido300
Junior Member
Junior Member
Posts: 23
Joined: 2003-07-28, 16:55 UTC

Multi-rename uppercase LAST letter only, don't touch others

Post by *fidofido300 »

Hi
i want to change only tje last letter of the filename to uppercase,
I have searched the forum but could not find anything about the subject
is there a way to do it??
Thanks in advance!!
User avatar
Gral
Power Member
Power Member
Posts: 1460
Joined: 2005-01-26, 15:12 UTC

Re: Multi-rename uppercase LAST letter only, don't touch others

Post by *Gral »

Rename mask: file name

Code: Select all

[N1--2][U][N-1-1]
User avatar
Stefan2
Power Member
Power Member
Posts: 4124
Joined: 2007-09-13, 22:20 UTC
Location: Europa

Re: Multi-rename uppercase LAST letter only, don't touch others

Post by *Stefan2 »

The [U] would not stop at the end of the name part and also will apply on the [E],
so me think you have to use the [n] too
[N1--2][U][N-1-1][n]


Otherwise the extension (or that part after the last dot) will be changed to upper case too.

In Multi-rename Tool press F1 for help and read more.




- - -


And for the RegEx lovers among us:

Filename mask: [N]
Extension: [E]
Search for: (.+)(.)
Replace with: $1\U$2
☐ ⩟ ☐ 1x ☐ [E] ☑ RegEx ☐ Subst





 
User avatar
fidofido300
Junior Member
Junior Member
Posts: 23
Joined: 2003-07-28, 16:55 UTC

Re: Multi-rename uppercase LAST letter only, don't touch others

Post by *fidofido300 »

Thank You Very Much
I have read the help file but i did not know that I could use (-)ve numbers in rename mask.
and RegEx is not my strong suit :)
Thanks
Post Reply