Concat [String]
Description
Given two [STRING]
inputs, concatenate the strings.
Caution: The output's size is |LEFT| * |RIGHT|
. This can be very large.
See parameters Take Top N from LEFT / RIGHT
.
Input
LEFT [STRING]
: Left inputRIGHT [STRING]
: Right input
Output
RESULT [STRING]
: the combined output
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)Take Top N from LEFT
: Use only the Top N fromLEFT
. Use 0 for no limit (Default: 0).Take Top N from RIGHT
: Use only the Top N fromRIGHT
. Use 0 for no limit (Default: 10).Make all permutations
: if true, concatenate both ways -LEFT
+RIGHT
andRIGHT
+LEFT