This program is awesome! Finally the ability to easily edit FLAC tags!
Anyway, onto my problem.
I'm a newb, so bear with me....
I want change the tags from this file:
0003 Lynyrd Skynyrd - Free Bird.mp3
I have searched and experimented with the pinned notes and all support questions and the help file, but I must be missing something.
I would like to have it output the tags as such:
Artist = Lynrd Skynyrd
Title= Free Bird
Track#=0003
I seem to be able to get it to make the artist tag "0003 Lynyrd Skynyrd", but that's not what I want. I've played around with it a bit, but can't seem to get it right.
you could read in the year in ur YYYYMMDD format in the tag field and then delete the last 4 digits with an action with a regular expression
^(\d{4})\d{4}
relpace with $1
That would work, but there really is a need for something simple in parsing the filename. That would be something like '?' standing for exactly one character. There is already an equivalent for '*' and that is '%dummy%'
%year%???? - %dummy%
doesn't work of course. The program deals fine with delimited sections, but not those of fixed length.
Dano already suggested a nice and simple solution for your very special problem. Please try out the Multi Rename Wizard of Total Commander to insert a delimiter, if you don't like the solution.
The Total Commander solution is similar to the d4n0 solution. It's a workaround to a simple placeholder that is missing in the Filename->Tag routine. What's so tough about having a parameter that matches any single character?
My solution was to export the file in csv format to Excel where I parsed the year out of the track number and copied the result into a taglist file. Is this what you might call a kludge?