The following functions are available.
Function Name | Arguments | Description | Example |
---|---|---|---|
ToBool |
ToBool(a) | Conversion to Bool type | |
ToInt |
ToInt(a) | Conversion to Integer type | |
ToFloat |
ToFloat(a) | Conversion to Floating-Point type | |
ToString |
ToString(a) | Conversion to String type | |
ToDate |
ToDate(a) | Conversion to Date and time | |
ToBinary |
ToBinary(a) | Conversion to Byte sequence | |
ToJSON |
ToJSON(a) | Conversion to JSON array type or JSON object type | split a string of numbers separated with , at , and turn the result into a JSON object so it can be processed with JSONPath to find out if any of the values exceeds 30 (for example in the trigger with the Expr setting): Len(JSONPath(“$[?@>30]”, ToJSON(Split(tv.Data, “,”, “-1”)))) > 0 |
Need more help with this?
Join our slack community for help