Renaming with numbers

Advanced Renamer forum
#1 : 16/12-14 16:55
andree
andree
Posts: 1
Hello,

I'm trying to rename file to get my TV shows/Movies in order.

Original:

Bones_-_s01e01_-_Pilot

Now:

Bones - S01e01 - Pilot

Want:

Bones - S01E01 - Pilot (Want to change the e(for the season) becomes E)

Thanks in advance


16/12-14 16:55
#2 : 17/02-15 10:28
Tester123
Tester123
Posts: 92
Try this:

Add Method: Replace
Text to be replaced: _-_s(\d{2})e(\d{2})_-_
Replace with: - S$1E$2 -
Use regular expressions: Tick

NOTE: There is one single space at both the start and end of the "Replace with:" string.


17/02-15 10:28 - edited 17/02-15 11:47