Skip to main content

string_operation

Variables

Performs common string operations on text variables.

Parameters

Parameter Type Required Default Description
value string Yes Input text or variable reference
operation string Yes String operation name
Options: concat, split, replace, to_upper, to_lower, trim, url_encode
params object No {} Sub-parameters for specific operations
output_variable string No Variable to store the result

Usage Example

RTILA X PROJECT JSON

    {
  "command": "string_operation",
  "params": {
    "value": "hello world",
    "operation": "to_upper",
    "params": {},
    "output_variable": "upper_text"
  }
}
  

Related Scenarios

Related Learning Articles

Was this helpful?