Skip to main content
Version: v0.16.0

StringInterpolate

Alias:StringInterpolate

Output:StringStream

Joins strings. Supports string interpolation. To use string interpolation, the string must be enclosed in double quotes and prefixed with a dollar-sign ($). Then, anything in curly brackets { and } will be evaluated as SCL.

ParameterTypeRequiredPositionSummary
StringsList<IStep>✔1The strings to join

Examples​

SCL​

$"The answer is {6 + (6 ^ 2)}"

Expected Output​

The answer is 42