I accidentally ended up with a bunch of files named like this:
Unknown - Songname.mp3
I need to remove the leading "Unknown - " I know this is an easy Regex but I am new to this an desperately need to fix these file names.
Thanks in advance.
I accidentally ended up with a bunch of files named like this:
Unknown - Songname.mp3
I need to remove the leading "Unknown - " I know this is an easy Regex but I am new to this an desperately need to fix these file names.
Thanks in advance.
"^Unknown - " or "^Unknown\s+-\s+"
Thanks a lot!