Media Center expression language-NEW
FUNCTION POINTER
FUNCTION NAME | FUNCTION DESCRIPTION |
---|---|
Construction | FUNCTION CONSTRUCTION |
Examples | EXAMPLES |
<<<<<<<<<<<<<<<<<=================================>>>>>>>>>>>>>>>>>>>>>>>>>
ListBuild(...): Build a list from a series of values
ListBuild() | This function provides the ability to create a single list from many different sources, allowing choices regarding ignoring or including empty values, and allowing a list delimiter to be specified. |
---|---|
Construction | ListBuild(Mode,Delimiter,Items,To,Include) Mode: There are two different modes available:
Delimiter: The character used here will be used as a delimiter between each of the specified list items. To be clear, if there are back slashes in the keywords field, and a list is built using keywords and genre, the specified delimiter is used between the keywords and genre fields when joining them, the back slashes in the keywords field would not be altered. Items To Include: This can be any number of specified text entries or library fields, seperated by commas |
Examples | listbuild(1,;,[keywords],[genre]) This will return a list containing all keywords and genres. Mode "1" has been specified, which means that if either keyords or genre is empty, they will be ignored.
|