Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: [feature request] "+" syntax for Album List (Read 1734 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

[feature request] "+" syntax for Album List

Assume we have a file with TITLE=title1, ARTIST=artist1 and PERFORMER=performer1. Is there a possibility to implement the following syntax in Album List to have this title1 both in artist1 and performer1:
Code: [Select]
%artist%+%performer%|%title%
Just like
Code: [Select]
%<artist>%|%title%
would work if there were ARTIST=artist1; performer1.
Thanks for consideration.

[feature request] "+" syntax for Album List

Reply #1
Doesn't "AND" fits your request?

Sorry, that's for search. For other uses it's $and(x,y), so maybe $and(performer1,artist1) should be used ?

[feature request] "+" syntax for Album List

Reply #2
$and(X,Y) is logical operator, how can it be of help?

[feature request] "+" syntax for Album List

Reply #3
Never tried this myself, but maybe
Code: [Select]
$puts(artstr,%artist%[';'%performer%])
$get(artstr)|%title%
will do.

HTH.

Alessandro

[feature request] "+" syntax for Album List

Reply #4
doesn't work either. %artist%[';'%performer%] is considered as a string, not two separate values.