Capitalization
Capitalization
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
{sxe} is just the binding name, like a variable, it's case-insensitive.
You can use String.upper() to upper-case the value:
You can use String.upper() to upper-case the value:
Code: Select all
{sxe.upper()}
Re: Capitalization
Well, that did the trick! Thank you very much indeed...!