string_operation
VariablesPerforms 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
- View /scenarios/data-transformation/1 · data transformation
Related Learning Articles
Was this helpful?
Thank you for your feedback!