Renaming files

hi folks,
I read a post on this exact point on renaming in this forum but after a search I can't find it and yes, I went back a lot, there are others topics on renaming but not this one, please forgive me.

I have a bunch of files named, 001.jpg, 002.jpg 003.jpg etc.

how can I rename them so that they are 1.jpg 2.jpg 3.jpg and so on.

I worked at it for an hour but can't solve it, and I remember it is so simple.

sorry for troubling you, especially when it was in the forum.

thanks lotts.

If you just want to remove the '00' prefix from all the files then the easiest way is to rename from

00*

to

Expanding on Nudel's answer you can use the following button to perform this rename on selected files:

<?xml version="1.0"?> <button backcol="none" display="both" textcol="none"> <label>Remove 00&apos;s</label> <icon1>#rename</icon1> <function type="normal"> <instruction>Rename FROM 00* TO *</instruction> </function> </button>

(If you don't understand the code block above, see the faq).