Problem with exporting to csv multiple composers

Hi everyone!

I have a big pile of files where composers are separated by "//" (shown in Mp3tag, e.g. "Jane Doe//James Doe") and also shown as "; " in Foobar2000 ("Jane Doe; James Doe").
I want to export them to a csv file, but only one name of composer is exported. I also tried to regexp this field, but I have no clue how to deal with special / character in this case. Also find and replace does not work in this case.

Any help will be appreciated.

You have to use $meta_sep(composer,;)
to get a list of composers, here separated by ;. Insert the character that is suitable for your export.

That easy! Thank you very much!