I would like to concatenate string values.
I have a string variable with a static value and I want to add the result of another variable.
$var1: program: Eco50, StartInRelative:
$var2: 3600 (this is the result of an expression)
How to combine $var1 and $var2 to one concatenated string?
Desired outcome:
$var3: program: Eco50, StartInRelative: 3600
-
How to concatenate string values
-
@pf For those interested: Actually when looking at the variablesdevice I found the solution in the remarks in the interface:
Start and end with quotes and embed the variables to parse with {}.
“program: {$dishwasher-program}, StartInRelative: {$dishwasher-startinrelative}”