Converts a string that corresponds to a hexadecimal number to an unsigned integer.
Res is unsigned int
Res = HexaToInt("1F")
// Returns an unsigned 4-byte integer containing the value 31.
Res = HexaToInt("FF")
// Returns an unsigned 4-byte integer containing the value 255.
Syntax
<Result> = HexaToInt(<Hexadecimal string>)
<Result>: Integer
Conversion result. This result corresponds to an unsigned 4-byte integer. In case of overflow, it can correspond to an 8-byte integer or to a numeric.
<Hexadecimal string>: Character string
Hexadecimal string that will be converted to an integer.
Business / UI classification: Neutral code