Removing Leading Alpha Chars from file name
How do I go about removing the leading alpha chars up to the first numeric number in file names in a directory.
eg.
EdmondSimmons879.478.3456_W_5.5.pdf
EdmondSimmons879.478.3456_W_6.0.pdf
etc.
eg.
EdmondSimmons879.478.3456_W_5.5.pdf
EdmondSimmons879.478.3456_W_6.0.pdf
etc.
Replace: [^\d]*
with: nothing
Use regular expressions
with: nothing
Use regular expressions