@str.concat
Concatenate strings together.
Returns: string
Syntax
Section titled “Syntax”@str.concat(first ...rest)Arguments
Section titled “Arguments”| Name | Type | Description |
|---|---|---|
first |
string |
First string segment |
[...rest] |
string |
Strings to append |
Examples
Section titled “Examples”# Concatenate stringsset $full @str.concat("hello" " " "world")
# Concatenate with helper resultset $greeting @str.concat("hi " @str(@me))