/
Method: Join( … )
Method: Join( … )
Returns a string that contains a concatenation of all specified parts separated with the specified separator.
Syntax
string Join( string separator, params string[] parts )
Example
Name = "Category";
// If the Input-row Category is "Vehicles" and Sub Category is "Cars"
Value = Join( "|", "Root", "{Category}", "{Sub Category}" );
// parts contained in brackets {} will be looked up in Input-row
// The Value will now be "Root|Vehicles|Cars"
, multiple selections available,
Related content
Method: Coalesce( … )
Method: Coalesce( … )
More like this
JOIN.INNER, JOIN.LEFT, JOIN.RIGHT and JOIN.FULL
JOIN.INNER, JOIN.LEFT, JOIN.RIGHT and JOIN.FULL
More like this
Scripting
Scripting
Read with this
Method: AppendOutValue( … )
Method: AppendOutValue( … )
More like this
SELECT.XML
SELECT.XML
Read with this
Method: Make( … )
Method: Make( … )
More like this