Int Operator - Haufe-Lexware/haufe.no-frills-transformation GitHub Wiki
The Int operator converts a string to an integer value, e.g. for use in operators needing integer
parameters. This is typically used if the source columns contain numbers as strings which need
to be used for calculations of sorts.
| What | Type |
|---|---|
| Syntax | Int(s) |
s |
string |
| Return type | int |
Example: Multiply(Int($wage), 10)
Multiplies the content of the field wage, interpreted as an integer value, by 10.