mqscript_len
Calculate the character count of a string input for use in mobile automation scripts, storing the result in a specified variable.
Instructions
Get length of a string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resultVariable | No | Variable name to store result | result |
text | Yes | String to get length of |
Input Schema (JSON Schema)
{
"properties": {
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
},
"text": {
"description": "String to get length of",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}