Renaming filenames

Advanced Renamer forum
#1 : 09/04-20 11:13
kurt
Posts: 8
Hi to all!

First I wish you a nice Easter weekend.

Question:

How to change the following Filename
'BMW M4 Coupé vs. Ford Mustang Fastback - GRIP - Folge 319 - RTL 2' to
'GRIP - Folge 319 - BMW M4 Coupé vs. Ford Mustang Fastback - RTL2' (maybe using regex).

I tried it, but it didn't work.

Thanx in advance

Kurt
#2 : 09/04-20 14:28
David Lee
Posts: 1125
Replace: (.*)-(.*-.*)-(.*) (\d)
with: \2- \1-\3\4
Using regular expressions

or

Replace: (.*)-(.*-.*)-(.*)
with: \2- \1-\3
if you didn't intend to take the space out of "RTL 2"
#3 : 09/04-20 14:37
kurt
Posts: 8
Reply to #2:

Thanx a lot - now it works.