Hello, how can I replace the first characters with numbers that increase.
For example, the files are ordered by number, but they are not correlative.
01. name of the file.mp4
03. name of the file.mp4
07. name of the file.mp4
33. name of the file.mp4
51. name of the file.mp4
and I would like to rename or change the first 3 characters for other numbers that start with 1 and increase
01. name of the file.mp4
02. name of the file.mp4
03. name of the file.mp4
04. name of the file.mp4
05. name of the file.mp4
I have tried removing the first characters from:
Regex(1)
Match: (^.{3})(.*)
Replace: \2
But then I don't know how at the same time, without the files changing position when deleting the numbers, I can add the others.
Can someone help me configure BRU for this task?
Thank you.
