How can I delete the 1st 10 chars from every track name?
The Long
I listen to audio books and radio plays when I go jogging. These can often have 100s of mp3s in them. My phone displays only the track names, so I add the track numbers to the track names....
Then I can just use the auto numbering wizard to calculate all the track numbers again, and then use the ACTION I used previously to add the track number to the name field...
So, yea.. I just need to del the first 10 chars from every track name.
^ anchors search to beginning of line \d matches a single digit {3} exactly 3 times / matches '/' exactly \d matches a single digit {3} exactly 3 times \s match single whitespace character - matches '-' exactly \s one whitespace character + an unlimited no. of times