Mathematical tools
This function allows you to do some mathematical operations inside your flows.
Input parameters​
| Section | Parameters | Usage | Mandatory |
|---|---|---|---|
| General | Method | The operation you want to perform | Yes |
| Sum, Subtract, Multiply and Divide* | Argument 1 | First argument of the operation | No |
| Argument 2 | Second argument of the operation | No | |
| Hexadecimal to Binary* | Hexadecimal string | The hexadecimal encoded binary string to decode | No |
| Similar Text* | Text 1 | First string to compare | No |
| Text 2 | Second string to compare | No | |
| Number Format* | Argument 1 | The number to format | No |
| Number of Decimals | The amount of characters after the decimal separator | No | |
| Decimal point | Symbol used to separate the integer part from the fractional part | No | |
| Thousand separator | Symbol used to separate thousands | No |
- Different input parameter sections will appear depending on the method chosen.
This is what different methods do:
- Sum, Subtract, Multiply and Divide: performs these operations.
- Hexadecimal to Binary: it decodes a hexadecimal encoded binary string and returns the binary representation of the given data.
- Similar Text: it calculates the similarity between two strings and returns the percentage of matching chars in both strings.
- Number Format: it formats a number with grouped thousands and floating point values.
Response parameters​
| Parameter | Content |
|---|---|
| result | The result of the operation. |