mqscript_ucase
Convert text strings to uppercase format for consistent text processing in mobile automation scripts.
Instructions
Convert string to uppercase
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| resultVariable | No | Variable name to store result | result |
| text | Yes | String to convert |
Input Schema (JSON Schema)
{
"properties": {
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
},
"text": {
"description": "String to convert",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}