mqscript_cint
Converts string values to integers for use in mobile automation scripts, enabling numerical operations and data processing in device control workflows.
Instructions
Convert value to integer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resultVariable | No | Variable name to store result | result |
value | Yes | Value to convert to integer |
Input Schema (JSON Schema)
{
"properties": {
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
},
"value": {
"description": "Value to convert to integer",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
}