Pluxbox Logo

Concatenate string block

Purpose:

Create one string of text with two seperate strings of text.

Input

  • Left
    Part of the text to be placed on the left side. Is forgotten, when output has been provided.

  • Right
    Part of the text to be placed on the right side. Is forgotten, when output has been provided.

Output

  • Value
    The combined texts. Only outputs when both left and right side has been set.

Example

graph LR
	A(["John "]) --Right--> C(Concatenate string)
	B(["Doe"]) --Left--> C
	C --Value--> D(["John Doe"])
		

Caveats

Remeber to add space between 'left' and 'right', if it's not supposed to be one word.