mqscript_split
Split a string into an array using a specified delimiter for mobile automation scripting, enabling structured data handling in device control operations.
Instructions
Split string into array using delimiter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arrayVariable | No | Array variable name to store result | arr |
delimiter | No | Delimiter character(s) | , |
text | Yes | String to split |
Input Schema (JSON Schema)
{
"properties": {
"arrayVariable": {
"default": "arr",
"description": "Array variable name to store result",
"type": "string"
},
"delimiter": {
"default": ",",
"description": "Delimiter character(s)",
"type": "string"
},
"text": {
"description": "String to split",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}