Removing numbers before "_"
I have files of the following naming:
52_PA58
052_PA40
53_PA41
053_PA62
I want to achieve
PA58
PA40
PA41
PA62
I've experimented a lot with the remove and replace methods but I have no luck.
Any suggestions? Thank you.
52_PA58
052_PA40
53_PA41
053_PA62
I want to achieve
PA58
PA40
PA41
PA62
I've experimented a lot with the remove and replace methods but I have no luck.
Any suggestions? Thank you.
Remove pattern: ^\d*_
Use regular expressions
Use regular expressions