#1 : 28/01-24 18:07 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 |
#2 : 28/01-24 22:11 Styb
Posts: 117
|
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 |
#3 : 29/01-24 01:43 Miguel
Posts: 147
|
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 |