I'm not familiar with using RegEx option in Multi Renamer but im sure that can be done..
How to move the year from the end to the beginning of the Folder/File in this example:
Champion EP (2004)
Of course, considering that the year can be any 4 digits ...
Thanks yall
Moving the specific text in the filename using RegEx
Moderators: Hacker, petermad, Stefan2, white
Re: Moving the specific text in the filename using RegEx
Search for: (.+)(\(\d{4}\))$
Replace with: $2 $1
☑ RegEx
Replace with: $2 $1
☑ RegEx
Overquoting is evil! 👎
Re: Moving the specific text in the filename using RegEx
thanks Fla$her 