Page 1 of 1

Capitalization

Posted: 18 Nov 2019, 12:52
by Retz59
I have been using the following preset to rename my tv show episodes: {n}/{'Season '+s}/{n} {SXE} {t}, does anyone know why the "X" always turns into a "x" after renaming and how to fix it so it renames using a capital "X" instead of a "x" after renaming?

Re: Capitalization

Posted: 18 Nov 2019, 13:23
by rednoah
{sxe} is just the binding name, like a variable, it's case-insensitive.

You can use String.upper() to upper-case the value:

Code: Select all

{sxe.upper()}

Re: Capitalization

Posted: 18 Nov 2019, 17:35
by Retz59
Well, that did the trick! Thank you very much indeed...!