Page 1 of 1

Force UPPER-CASE series name

Posted: 06 Sep 2018, 12:19
by Ander
Hi,

after some time spending and searching and many many trial and errors..... I got the most figured out, but still need some help.

My episode format looks like:
{n.space('_')}_{s00e00}_[DVD]

Is there a way - couldn't find the expression - to UpperCase all letters in the title?

Re: Help with Episode Format

Posted: 06 Sep 2018, 14:20
by kim
e.g.

Code: Select all

n.upper()

Re: Help with Episode Format

Posted: 06 Sep 2018, 14:59
by rednoah
And of course you can chain them:

Code: Select all

n.space('_').upper()