I would like to uppercase the first letter of every word except in specific case. Here is an example:
Herbert von Karajan - Dg Recordings - 159-01 - (1981) - Wagner - Parsifal - II - Komm, komm, holder knabe!.mp3
and obtain:
Herbert Von Karajan - Dg Recordings - 159-01 - (1981) - Wagner - Parsifal - II - Komm, Komm, Holder Knabe!.mp3
keeping the two or three "II" in upper case as on original (Act #)
I used : case conversion "TITLE" : mixed case but it give me "Ii" which is not what I would like.
Is it possible to achieve that or shall I change my way of doing things.
Thank you
Note: one of the $caps functions allow to keep already uppercased letters.
What is the format string to assemble the filename?
You may use this last step or the step before to format the different casing of the envolved strings, part by part.
DD.20130119.1645.CET
What is the format string to assemble the filename?
You may use this last step or the step before to format the different casing of the envolved strings, part by part.
The segment to be kept in upper case varies from case to case. It could be in the title tag or even in the artits tag. Here is an example: artist : "herbert II von karajan" to obtain "Herbert II Von Karajan"
I've tried $cap,$cap2... First I do not know where I could put it and how it work.
I do not understand the sentence in your answer.
I'm still new to mp3tag. Could you give me an example on how to solve the artist example.
Thank you
Converter: Tag - Tag ... or ... Action: Format value
Field: ARTIST
Formatstring: $caps2(%ARTIST%)
From:
herbert II von karajan
To:
Herbert II Von Karajan
DD.20130119.1814.CET
Thank you very much. With this example I understand better how $cap2 work and how I can apply this to other tags
Thanks again