I have a regex problem that i don't understand
I want to rename a lot of filename like this :
Before
NAME 1 NAME 2 - TITLE1 TITLE2 TITLE3.epub
After
NAME2, NAME 2 - TITLE1 TITLE2 TITLE3.epub
I just want to invert NAME1 WITH NAME 2 and keep everything else like it was.
i can have many words TITLEx
I have tried
Match (.*) (.*) - (.*)
Replace \2, \1 - \3
But my "title part" is always incomplete, i miss the last part of the title.
Could someone could help me ?
It makes me crazy because it does not seem difficult but


Thanks !