TextTransformAction

TextActions. TextTransformAction

An action "textTransform" that can transform a string to either "uppercase", "lowercase", "capitalize"

Constructor

new TextTransformAction()

Source:
Example
// Uppercase a string in a property
{
    "textTransform": {
        "property": "myStringProperty",
        "mode": "uppercase"
    }
}

// Capitalize a string in a variable
{
    "textTransform": {
        "variable": "myStringVariable",
        "mode": "capitalize"
    }
}