Concat [Obj,String]
Description
Given two [OBJ,STRING]
inputs, concatenate the strings per matching object.
Input
LEFT [OBJ,STRING]
: Left inputRIGHT [OBJ,STRING]
: Right input
Output
RESULT [OBJ,STRING]
: the combined outputSTRINGS [STRING]
: only strings
Parameters
Separator
: string to use as a separator between the concatenated strings (Default is a space)Coefficient LEFT input
: Relevance coefficient to apply toLEFT
(Warning: The sum of the two coefficient should sum up to 1.0)Coefficient RIGHT input
: Relevance coefficient to apply toRIGHT
(Warning: The sum of the two coefficient should sum up to 1.0)Combination
Disjunctive
: objects must occur in at least 1 input (default)Conjunctive
: objects must occur in all inputs
Make all permutations
: if true, concatenate both ways -LEFT
+RIGHT
andRIGHT
+LEFT