Hello
Is there a way to use [0-9 A-F] in the regex rename, also switch "2 test.doc" to "test 2.doc" had used in some other regex for example to find "(#)(test).doc" and replace "\2 \1.doc" . Like the regex find and replace in Office Excel.
Thanks
Rename multiple files Using Regex
-
Stefan
- Posts: 1360
- Joined: 18 Nov 2008 21:47
- Location: Europe
Re: Rename multiple files Using Regex
Hi Sharuc, welcome!
(\d) (.+)\.doc > $2 $1.doc
For an better answer please provide more examples and/or see:
http://88.191.26.34/XYwiki/index.php/Re ... xpressions
http://88.191.26.34/XYwiki/index.php/Re ... Exp_Rename...
Yes.Sharuc wrote:Hello
Is there a way to use [0-9 A-F] in the regex rename,
also switch "2 test.doc" to "test 2.doc" had used in some other regex
for example to find "(#)(test).doc" and replace "\2 \1.doc" .
Like the regex find and replace in Office Excel.
Thanks
(\d) (.+)\.doc > $2 $1.doc
For an better answer please provide more examples and/or see:
http://88.191.26.34/XYwiki/index.php/Re ... xpressions
http://88.191.26.34/XYwiki/index.php/Re ... Exp_Rename...
XYplorer Beta Club