Rename from no spaces file name

albescri

06-01-2012 08:12:39

How could I do to rename a file like this:
madmen101.avi

Do I have to set a Regex?
Thanks

Gibbo

17-03-2012 14:56:13

I HIGHLY recomend this program for all your renaming neads :D
http://www.bulkrenameutility.co.uk/Main_Intro.php

Nice and feature filled. Works well.
Using your example, in the top regex box put in:
madmen1([0-9][0-9])
In the bottom regex box put in:
Mad Men 1x\1
Then highlight all of the season 1 files and hit rename.
This replaces the whole file name with what is in the bottom box inserting what was inside the brackets (in this case two numbers from 0-9) from the original names ("\1" for the first set of brackets that match "\2" for the second etc)

Some further help on regex's:
Tutorial
http://www.codeproject.com/Articles/9099/The-30-Minute-Regex-Tutorial
Cheatsheet
http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/