Remove the 0 part before the name

Advanced Renamer forum
#1 : 14/07-15 20:22
Ben Tyler
Ben Tyler
Posts: 2
Hello,

The program is amazing, but I have at least 1000 picture files, I want it list as:

1
2
3
4

instead of

001
002
003
004

How can I do this ? Please guide me :D


14/07-15 20:22
#2 : 14/07-15 20:38
Tester123
Tester123
Posts: 92
Reply to #1:

Try this Replace Method to strip off leading zeros from any numbers anywhere in the filename:

Text to be replaced: 0+([1-9]+)
Replace with: \1
Use regular expression: Tick

Summary: Look for at least one zero '0+' followed by any digit from 1 to 9 at least once '[1-9]+' and call this non-zero part group 1 (that's what the parentheses are for).
Replace with group 1 '\1' (i.e. the non zero leading digits part).


14/07-15 20:38
#3 : 14/07-15 21:02
Ben Tyler
Ben Tyler
Posts: 2
Problem resolved, thank you !


14/07-15 21:02 - edited 14/07-15 21:45
#4 : 16/07-15 19:44
Stefan
Stefan
Posts: 274
Reply to #1:
 
To rename without leading zeros,

go to "Program > Settings > Renaming"

and un-tick "[_] Use zero padding in Inc Nr tags"




(that's how I understood the question)
 


16/07-15 19:44