Constructor
new ConcatAction()
- Source:
Examples
{
"concat": [
"Hello",
" ",
"World!"
]
}
{
"concat": {
"strings": [
"How",
"dy!"
],
"as": "myResultVariable"
}
}
{
"concat": {
"strings": [
"Hello, ",
"$myStringVariable",
" doing?"
],
"as": "myResultVariable"
}
}
{
"concat": {
"strings": "$myStringArrayVariable",
"as": "myResultVariable"
}
}
{
"concat": {
"strings": [
"Variable: "
{"variable": "myStringVariable"},
" Property: ",
{"property": "myStringProperty"}
],
"as": "myResultVariable"
}
}