After a question from one user of my script I observed the following thing. Let say that I have two kind of Titles which have column character - one with a space character after it (e.g. "Finale: Presto" or "Rondo: Allegro") and another without a space character (e.g. "12:08 AM"). In the first example I want to replace ": " with " - " (note added space character before dash) because it is ugly to get filename as "Finale- Presto" or "Rondo- Allegro". In the second example it should be "12-08 AM" without spaces around dash. This second example is already covered with the default FilenameMappings, but not the first. So, I added the line:
Code: Select all
3A20=202D20Code: Select all
3A=2DCode: Select all
Finale - PrestoCode: Select all
Rondo - AllegroWell, if I type 3A20=202D instead of 3A20=202D20 everything works as needed, but in my opinion it is not logical nor correct way.


