mqscript_right
Extract a specified number of characters from the right side of a string for use in mobile automation scripts.
Instructions
Get specified number of characters from right side of string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of characters to extract | |
resultVariable | No | Variable name to store result | result |
text | Yes | Source string |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of characters to extract",
"type": "number"
},
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
},
"text": {
"description": "Source string",
"type": "string"
}
},
"required": [
"text",
"count"
],
"type": "object"
}