I have around 180 files with the same structure: 000-aaaaaaaa.txt
.
Regular expression for a file name: /^[0-9]{3}\-[a-zA-Z]+$/gi
(3 digits + -
+ letters + .txt
).
I would like to cut of the numeral part and -
in each file name
For example
000-hello.txt
->hello.txt
001-world.txt
->world.txt
002-ubuntu.txt
->ubuntu.txt
003-linux.txt
->linux.txt