Remove everything after
Hi!
I have some files like this
heyhey.s01e01.english.web.720p.mkv
heyhey.s01e02.english.web.1080i.mkv
heyhey.s01e03.english.web.720p.mkv
And want it to be like this
heyhey - S01 E01.mkv
heyhey - S01 E02.mkv
heyhey - S01 E03.mkv
So basiclly delete everything after the last episode number except the file extension.
How do i do that?
Tnx :)
I have some files like this
heyhey.s01e01.english.web.720p.mkv
heyhey.s01e02.english.web.1080i.mkv
heyhey.s01e03.english.web.720p.mkv
And want it to be like this
heyhey - S01 E01.mkv
heyhey - S01 E02.mkv
heyhey - S01 E03.mkv
So basiclly delete everything after the last episode number except the file extension.
How do i do that?
Tnx :)
Replace: "^([^\.]*)\.([^\.]*).*"
With: "\1 - \U2"
Occurrence: "1st"
Use regular expressions
Apply to "Name"
For explanation see the User Guide:
www.advancedrenamer.com/user_guide/regular_expresions
"\U2" is similar to "\2" but converts the text in the sub-pattern to upper case
With: "\1 - \U2"
Occurrence: "1st"
Use regular expressions
Apply to "Name"
For explanation see the User Guide:
www.advancedrenamer.com/user_guide/regular_expresions
"\U2" is similar to "\2" but converts the text in the sub-pattern to upper case