Search found 2 matches

by codyd
03 Aug 2010 04:40
Forum: Tips & Tricks, Questions & Answers
Topic: Regex help for renaming files
Replies: 12
Views: 6488

Re: Regex help for renaming files

Thanks so much for all your help with this. I am going to mess with it more tonight after work.

Code: Select all

(.+) - (.+)\.(.{3,4}) > $2 - $1.$3
worked like a charm along with all the other sugestions. Thanks again. Im just getting my feet wet with XY and RegEx.
by codyd
02 Aug 2010 11:57
Forum: Tips & Tricks, Questions & Answers
Topic: Regex help for renaming files
Replies: 12
Views: 6488

Regex help for renaming files

I'm having a crazy time trying to figure out regex and need some assistance. Im trying to rename a bunch of ebooks, heres an example. A Clockwork Orange - Anthony Burgess.epub and I would like to rename it as: Anthony Burgess - A Clockwork Orange.epub Is there any way I can group everything before t...