$performer¶
Utilisation: $performer(motif[,séparateur])
Catégorie: multi-valeur
Mis en œuvre: Picard 0.10
La description:
Returns the performers where the performance type matches pattern
separated by
separator
(or a comma followed by a space « , » if not passed). If pattern
is blank, then all performers will be returned. Note that the pattern
to be
matched is case-sensitive.
Exemple:
Avec les balises performer comme performer:guitar
= « Ann », performer:rhythm-guitar
= « Bob » et performer:drums
= « Cindy », les instructions suivantes renverront les valeurs indiqué:
$set(foo,guitar)
$performer(%foo%) ==> "Ann, Bob"
$performer(guitar) ==> "Ann, Bob"
$performer(Guitar) ==> ""
$performer(rhythm-guitar) ==> "Bob"
$performer() ==> "Ann, Bob, Cindy"
$performer(, / ) ==> "Ann / Bob / Cindy"