remove zero at the begin of file name

Advanced Renamer forum
#1 : 15/09-14 17:20
apple
apple
Posts: 2
I would like to remove the zero before the file name, such as

01.png
02.png
..
..
10.png
11.png
12png
..
..
20.png

to the follow

1.png
2.png
..
..
10.png
11.png
12png
..
..
20.png

Thanks for help!!!!


15/09-14 17:20
#2 : 15/09-14 19:38
Stefan
Stefan
Posts: 274
Reply to #1:
 
RULE:
Remove first leading zero at begin.


FROM:
01.png
0010.png
00010.png
10.png
100.png

TO:
1.png
010.png
0010.png
10.png
100.png


USE:
Replace method (http://www.advancedrenamer.com/user_guide/metho d_replace)

Replace: ^0
With:
Occu: [ 1st]
[X] RegEx



Tip:
Use "All" at "Occurence value" (new with Advanced Renamer 3.5 - 20. aug 2012) to remove every leading zero.

 


15/09-14 19:38
#3 : 16/09-14 16:54
apple
apple
Posts: 2
Reply to #2:
Thank you!!


16/09-14 16:54