Clean up filenames

Hello,

I did use lot of this program back in the past and remember that there was some function to “clean all filenames”. So let’s say that you had a filename that was wrong like this:

”01-W.A.S.P. -Love Machine” and it should be “01 - W.A.S.P. - Love Machine” it did correct every filename with a regular impression. With this function it was easy to clean the whole library at once.

Is this function still available as I can not find it?

I would use Convert>Tag-Filename and rewrite the filename in toto with e.g.
Format string: %track% - %artist% - %title%

Are you referring to the $validate function?

From the String functions part of the documentation:

$validate(x,y) returns the given file name/path x with all invalid characters /?*"<>|: replaced by the string y.

If you want to replace a single hyphen with "space hyphen space", then a simple "Replace" should be enough.

Also, see here:

Thank you once again for good hints!