free Category:Basic
Append Text appends text to the provided text
E.g if the first text is "Hello" and the second text is "World", the result will be "Hello World"
If the first text is a list, it will append the corresponding text to the second text
E.g: First input: ["Hello", "Hi"] Second input: "World"
Will create the following: ["Hello World", "Hi World"]
Note: All appends are separated by a space
type | name | edge |
---|---|---|
text | first | True |
text | second | True |
type | name | edge |
---|---|---|
text | result | True |