mqscript_join
Combine array elements into a single string using a specified delimiter for mobile automation scripting with MQScript MCP Server.
Instructions
Join array elements into string using delimiter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arrayName | Yes | Name of the array to join | |
delimiter | No | Delimiter character(s) | , |
resultVariable | No | Variable name to store result | result |
Input Schema (JSON Schema)
{
"properties": {
"arrayName": {
"description": "Name of the array to join",
"type": "string"
},
"delimiter": {
"default": ",",
"description": "Delimiter character(s)",
"type": "string"
},
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
}
},
"required": [
"arrayName"
],
"type": "object"
}