Summary
Converts the bytes contained in a string to a number.
Propriétés
-
Encoding : Configures how the string is encoded. Can take values: UTF-8, UTF-16, UTF-16BEUTF-16LE, US-ASCII, ISO-8859-1, HEX and Base64.
-
Numeric Type : Specifies the type of the number to be created. Whether the value is signed, unsigned, and the number of bits representing the number, (see the table below).
-
Order : Specifies the order in which the number is to be decoded. Most significant byte first (Big Endian) or least significant byte first (Little Endian).
Types of numbers
|
Name |
uint8 |
uint16 |
uint32 |
int8 |
int16 |
int32 |
Float |
|---|---|---|---|---|---|---|---|
|
Signed |
N |
N |
N |
Y |
Y |
Y |
Y |
|
Bytes |
1 |
2 |
4 |
1 |
2 |
4 |
4 |