How do I change filenames in this format

Bulk Rename Utility How-To's

How do I change filenames in this format

Postby Ems » Fri Dec 20, 2019 9:43 am

I have a lot of files in the format "Title - Author" How can I change them all to "Author - Title"? I have tried using the regular expression "^[A-Z][a-z]* - [A-Z][a-z]*[/code]" with no luck.
All help is much appreciated!
Ems
 
Posts: 2
Joined: Fri Dec 20, 2019 9:39 am

Re: How do I change filenames in this format

Postby Panchdara » Fri Dec 20, 2019 11:50 am

Match: (.*) - (.*)
Replace: \2 - \1
Panchdara
 
Posts: 67
Joined: Sat Jan 09, 2016 7:25 pm

Re: How do I change filenames in this format

Postby Ems » Fri Dec 20, 2019 12:24 pm

Panchdara wrote:Match: (.*) - (.*)
Replace: \2 - \1


Thank you!
Ems
 
Posts: 2
Joined: Fri Dec 20, 2019 9:39 am


Return to How-To