i want to rename a lot of folders formated like "Artist - Album (Year)" into "Artist - (Year) Album". I bet it's pretty easy with RegExp Rename if you know how it works but i don't get it .
either someone can tell me how it works or simply write me the correctly regex (this would also help me a bit to understand how it works).
3 capture groups (surrounded by round parenthesis) and you're assigning them bei $1, $2 and $3. $2 and $3 are switched.
\s = a space
\( or \) = a literal ( or )
.*? capture any character (non greedy)
Test it on a few items first...
One of my scripts helped you out? Please donate viaPaypal