Page 1 of 1

Rename with double digit season

Posted: 17 Mar 2020, 13:37
by namgorf2001
Currently there is:

Code: Select all

{n} - {sxe} - {t} to give you 
Firefly - 1x01 - Serenity

and there's

Code: Select all

{n} - {s00e00} - {t} to give you
Firefly - S01E01 - Serenity

how would i get {n} - {sxe} - {t} to give me 01 instead of just 1? like the second example, just without the S.

Thank you in advance.

Re: Rename with double digit season

Posted: 17 Mar 2020, 14:43
by rednoah
sxe.pad(5) would be the easiest solution.

Code: Select all

{sxe.pad(5)}

Re: Rename with double digit season

Posted: 17 Mar 2020, 17:25
by namgorf2001
You're the best. Thank you.