HexToInt[edit]
- Converts a hex string to an integer
int Function HexToInt(string hexString) global native
IntToBin[edit]
- Converts an integer to binary, with the optional
abAddPrefix parameter to prefix 0b to the output
aiBinWidth allows to choose how many leading zeros are present, but is capped at 32 i.e. 111111111111111111111111111111111111
string Function IntToBin(int aiNumToConvert, int aiBinWidth, bool abAddPrefix) global native
IntToHex[edit]
- Converts an integer to hex, with the optional
abAddPrefix parameter to prefix 0x to the output
aiHexWidth allows to choose how many leading zeros are present, but is capped at 8 i.e. FFFFFFFF
string Function IntToHex(int aiNumToConvert, int aiHexWidth, bool abAddPrefix) global native
StringToInt[edit]
- Extracts integers from a string e.g.
123abc456 will be returned as 123
int Function StringToInt(string asIntString) global native
|