To freshen up this old thread ...
... removing a disc and track number from the left side of the filename.
Use an action of type "Format value".
Field: _FILENAME
Formatstring:
$trimLeft(%_filename%,'0123456789- ')
From:
'01-02 eight days a week.mp3'
To:
'eight days a week.mp3'
... but ...
From:
'01-02 8 days a week.mp3'
To:
'days a week.mp3'
$cutLeft(%_filename%,6)
From:
'01-02 eight days a week.mp3'
To:
'eight days a week.mp3'
$regexp(%_filename%,'^\s*\d+\s*\-\s*\d+\s*',)
From:
'01-02 eight days a week.mp3'
To:
'eight days a week.mp3'
... or ...
From:
' 01 - 02 eight days a week.mp3'
To:
'eight days a week.mp3'
DD.20110311.1325.CET