Returns a list of nodes from the specified node list where the specified expression evaluates to True.
ListNodesWith(NodeList:String,Delimiter:String,Expression:String):String
NodeList is a comma-delimited list of node names.
Delimiter is the character to use to delineate items in the string list. Supported special characters:
[comma]
[space]
[tab]
Note: | You must use the name of the delimiter (not the character) and include brackets around the name. |
Expression is a Boolean expression to evaluate.
ListNodesWith(100;200;300,[comma],NodeIsLeaf())
Returns True,True,True if nodes 100, 200, and 300 are leaf nodes.