You are not logged in.
Pages: 1
Hi:)
Is it possible to move the year to the beginning of the title and remove everything after it?
Basically, tell the Renamer that if there are four consecutive numbers, it should move them to the beginning, for example:
King.Of.New.York.1990.ITA.1080p.AMZN.WEB-DL.x264-UBi
to
1990 - King.Of.New.York
Thanks
Offline
You can do this with the Regular Expressions rule.
Expression:
\A(.*?)\b(\d{4})\b.*
Replace:
$2 - $1
And then tidy up the dots with other rules.
Offline
Perfect, thanks!
Offline
Pages: 1