I would like to ask, I have these files with their title in id3 as
01.track1
02.track2
I would like to know how to remove the number, taking into account the . as . removes any type of character
I would like to ask, I have these files with their title in id3 as
01.track1
02.track2
I would like to know how to remove the number, taking into account the . as . removes any type of character
Action type: Replace with regular expression
Field: TITLE
Regular expression: ^\d*.
Replace matches with:
Kind regards,
Florian
my ChopLeadingTrackNoFromTitle regex replace action has:
^\d{0,3}[- ._ ]*
(chop off up to 3 leading digits and blanks/dots/dashes/underscores that may follow them)
don't apply this to Nena's song "99 Luftballone" ... 
andreas
Thank you very much