Hi,
$caps(%album%) on Sounds good feels Good [Deluxe Edition]
gives
Sounds Good Feels Good [deluxe Edition]
I fear that I am even more confused!!!
Help please
Hi,
$caps(%album%) on Sounds good feels Good [Deluxe Edition]
gives
Sounds Good Feels Good [deluxe Edition]
I fear that I am even more confused!!!
Help please
Hi auldyin,
the $caps() scripting function only uses the blank as the character to trigger upper case by default. However, there is an optional second parameter where you can specify a list of characters that should trigger upper case.
In your example, the format string that produces the expected result is
$caps(%album%, '[')
Please note the blank character in the second parameter and the escaping of [ via single quotes (since it is a special reserved character in Mp3tag's scripting language).
Kind regards
– Florian
Thank you Florian