mqscript_isnumeric
Validate if a string value contains only numeric characters for mobile automation scripting with MQScript MCP Server.
Instructions
Check if value is numeric
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| resultVariable | No | Variable name to store result | result | 
| value | Yes | Value to check | 
Input Schema (JSON Schema)
{
  "properties": {
    "resultVariable": {
      "default": "result",
      "description": "Variable name to store result",
      "type": "string"
    },
    "value": {
      "description": "Value to check",
      "type": "string"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}