Convert Number Filter
The Convert Number(s) filter takes input numbers and changes the byte order and/or format.
| setting | description |
|---|---|
| Number Type | The number of bits of the input/output numbers |
| In Byte Order | The byte ordering of the input numbers |
| Out Byte Order | The byte ordering of the output numbers |
| Out Format | The format (Octal, Decimal, Hexadecimal) of the output |
| input | output | options |
|---|---|---|
| 1234 0xFF00 | 53764 0xff | Number Type: Short 16b
In Byte Ordering: Host Out Byte Ordering: Little Out Format: Don't Change |
| 1234 0xFF00 | 0o2322 0o177400 | Number Type: Long 32b
In Byte Ordering: Host Out Byte Ordering: Host Out Format: Octal |
| 1234 0xFF00 | 53764 255 | Number Type: Short 16b
In Byte Ordering: Little Out Byte Ordering: Big Out Format: Decimal |