Page 1 of 1

Crop Special

PostPosted: Sun Jan 21, 2024 3:14 pm
by aprilla
I'm already using RegEx

Can I use Crop Special to crop all that comes before a number, any number?
Numbers have a leading zero - 01, 02, 03 etc
I can use Crop Before to rename all folders with 0 (select 01-09) but then I have to type 1 (select 10-19) then 2 etc to do the higher numbers. Is there something Crop Special will recognise to mean any number, so crop to number for all selected folders?

I've been reading and trying things out but not getting anywhere.

I can do this in RegEx but then what RegEx is doing for me doesn't happen elsewhere.

Thanks

Re: Crop Special

PostPosted: Wed Jan 24, 2024 4:57 pm
by therube
I'm already using RegEx

What is your RegEx?

Something like this would remove opening digit(s) [1 or more]:

1:RegEx
Code: Select all
Match:  ^(\d+)(.*)
Replace:  \2



Depending on your names, 5:Remove -> Digits, might work.