Changing letters between numbers

Advanced Renamer forum
#1 : 28/01-24 18:07
John
John
Posts: 1
Hello,

since I have a stack of series on my HDD, I decided to keep them labeled like :
<series name> S01E01 <episode name>

Now I noticed that quite a lot of files have been saved under the form s01e01.
How do I get the s and the e upper case?

Thanks


28/01-24 18:07
#2 : 28/01-24 22:11
Styb
Styb
Posts: 80
Reply to #1:
Use the list replace method to replace s0 with S0, s1 with S1, e0 with E0, and e1 with E1.

https://postimg.cc/CZD52MY6


28/01-24 22:11
#3 : 29/01-24 01:43
Miguel
Miguel
Posts: 59
Reply to #1: Use this regex to see if work.

REPLACE:
s(\d{2})e(\d{2})

REPLACE with:
S$1E$1
Use regular expresión

In this moment I am not in my computer so cant see if work.

Miguel
EDIT: Change to S$1E$2


29/01-24 01:43 - edited 29/01-24 10:08