mqscript_lcase
Convert text strings to lowercase format for consistent text processing in mobile automation scripts, enabling standardized string handling across device operations.
Instructions
Convert string to lowercase
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"
}