-
Notifications
You must be signed in to change notification settings - Fork 2
Format number
ryannewington edited this page Jun 23, 2016
·
1 revision
This transform allows you to convert a number to a string in a predetermined format. Any .NET numeric format string is supported.
Parameter | Description |
---|---|
Format | The .NET numeric format string value to use |
The transform accepts integer values as an input.
The transform accepts multiple input values, and processes each of them individually
The transform returns a string value for each of the input values
Input value | Format | Output value |
---|---|---|
1 | D4 | 0001 |
2 | D3 | 002 |
100 | C2 | $100.00 |
15 | X | F |