I cannot appear to get this to work, ive tried adapting the other regex expressions I have found on here and a very similar one which uses () but I cannot get it to work with [].
Heres what I am trying to achieve:
TITLE - Song name [Tune of the Week]
I would like to move the text in the [] out of the TITLE tag and move to a new tag called FEATURE. The [] and the text in the TITLE would then be removed.
I have tried using a very similar Guess Values action which I use to remove (Disc #) from MusicBrainz album tags and populate the DISCNUMBER tag but this doesnt work:
After you have "guessed" the value and title still has the square brackets you could add an action that (with just an ordinary "replace") replaces the square brackets with nothing.
If you are sure that always the same remainder can be found you may do this with one action like
Replace
Search string "[ ]" (leave out the quotation marks)
Replace string "" (leave out the quotation marks = nothing)
Or replace one bracket after the other and then also add an action for title to trim the trailing spaces:
Format tag field Title
String: $trim(%title%)
Should work, it is one of the simplest things you can do in Mp3tag, see FAQ area and thousands of user requests in the forum of nearly the same problem.
Try again Action #1 as described!
Yes, there is a learning curve how to differentiate between the tag-field name and the tag-field content.
If you want to use the content of a tag-field, then you have to enclose the tag-field name by a pair of percent signs, which work as "content operators".
A quick variation of this that I couldn't figure out. I have tracks with the title field being:
Song Title [Feat. Second Artist]
After Mp3Tag made a big deal about ALBUMARTIST vs. ARTIST and all that jazz, and keeping the TITLE clean, I figure I want to move the [Feat. Second Artist] part to the end of the ARTIST, so I want to start with:
ARTIST = First Artist
TITLE = Song Title [Feat. Second Artist]
and go to:
ALBUMARTIST = First Artist
ARTIST = First Artist [Feat. Second Artist]
TITLE = Song Title
Thoughts on how to make that happen in one step?
Thanks!
Be aware, that a complicated looking task can mostly be solved by single steps.
Mp3tag supports this strategy by so called action modules, so that nobody needs to solve their tasks in a one step go.
You can find answers and examples for your problem in this thread and in the FAQ area of the forum.
It would be nice if I could run a single action (even if it had nested subactions in there) so that I could process a whole bunch of files at once.
Any hints on the single steps? I'm not an expert at regexp and my Mp3Tag actions so far have been pretty simple.