Fixing/Renaming files with invalid(invisible) characters.
I came across some MP3's with invisible characters (like Ø ) in their name because of some codepage hickups. It's quite easy to fix with a simple regex search and replace.
Actions -> Replace with regular expression
Field: _ALL
regex: \xc3\x98
Replace matches with: Ø
\xc3 = hex c3 = Ã
\x98 = hex 98 = invisible control character (on my PC)
A full list with possible hickups can be found here:
UTF-8 Encoding Debugging Chart
