Delete/remove everything left of the FIRST character filename
How do I delete/remove everything left of a character filename? such as a hyphen with multiple hyphens on the filename?
I assume that you will want to remove the first hyphen as well. If so...
Replace: ^[^-]+-
with: leave blank
Occurrence: 1st
Use regular expressions
Replace: ^[^-]+-
with: leave blank
Occurrence: 1st
Use regular expressions
Reply to #2:
Thank you!
Thank you!