Concatenate

library operator
ID: 0b728e09-0651-46c3-bed3-20b0ad416569
Concatenates strings A and B.

Behavior

Test data showing the behavior of Concatenate

Concatenate strings

It concatenates strings.

Input Output
{"a":"ha","b":"llo"} "hallo"
{"a":"Slang","b":" rock... "Slang rocks"
Empty strings

It empty strings.

Input Output
{"a":"","b":"Slang"} "Slang"
{"a":"test","b":""} "test"
{"a":"","b":""} ""

Implementation

The implementation of Concatenate makes use of the following 1 operators.

1
Evaluates an expression.