In $setmulti can I include CRLF as an element separator and if so, what is the syntax

Hello,

I use this line in a script. It works.

$setmulti(listOfTags,title; album; artist,; )

If I have for example 25 items it would be easier to read them if each was on a separate line (as follows) i.e. have the separator include carriage return line feed.

$setmulti(listOfTags,

title;

album;

artist,

appropriate separator here)

Is it possible to do this and if so, what syntax do I use?

After some additional research I determined that it is possible. The following is the code utilized.

$setmulti(tagsToModify,title

album

artist,\n)

Two things I discovered is that the first element has to be on the first line and the delimiter (“,\n)”) has to be part of the last line. \n is a newline.