The 2nd thing I wished to do is () numbering instead of single seperator numbering. Normally when you select multiple files and rename them, if you put nothing the 2nd file becomes (1), if you put (1), then it goes in sequence from there. Same goes for putting any number in the (), it will start from that number. However I can't get this program to do that. It will only do (# instead of (#).
Z 500229211 (1)
Z 500229211 (2)
Z 500229211 (3)
Z 500437449 (1)
Z 500437449 (2)
Z 500653851
Above is a list of a few photos that we have in our standard filing format.
Below is how we get them from our sources.
Alan - Z 500229211 car
Alan - Z 500229211 ladder
Alan - Z 500229211 door
Erik - Z 500437449 #1345
Erik - Z 500437449 #1346
Daniel - Z 500653851-1
As you can see, our sources send it to us. I have an automated program that takes their name from the email and appends it to the file. This is for our office use, in case the file name has a wrong number and we have to contact the source for a fix. Once all of the numbers are confirmed, I then have to manually adjust each one before we send it out to our client.
Is there a way to make an expression with a wildcard for the 5xxxxxxxx number so that it stays the same while everything else is editted?
Edit--
Ok I found an older post about wildcards, apparently the * in the Crop box of Section 6 followed immediatly by the character will remove up to and including that character. For example *- will remove the source name and the dash from all of my files. Which is good I guess, but then there's still the stuff after the file numbers that I need to remove


Edit2 --
Found something that might work.
(.+)(\Z.+)(\ )
\2
The above 2 lines in the RegEx seems to work, only if there IS something after the file number. If there is nothing it fails to work because there is no space afterwards

Still trying to figure out how I can do the proper Numbering sequencing. Oh well, tomorrow is another day.