by Luuk » Sun Aug 28, 2022 9:53 am
Is space to always be the separator for (numbers) at the end?? And should they be changing like?...
Name (1).txt =====> Name-001.txt
Name-(10).txt ====> Name-010.txt
Name_(100).txt ===> Name-100.txt
If the answers is being yes? then Regex(1) can use a checkmark in "v2", with a "Match" and "Replace" like...
[- _]?\((\d+)\)$(?X):0+(?=\d{3,})
:000000000$1(?X)-
Can increase "3" up to "9 " for more padding (or add more zeroes in the bottom for 10-or-more).
Can omit or change the "-" to change your preferred separator.