parseHex
The parseHex operator allows you to convert a hexadecimal string of 16 or fewer characters to a number.
Syntax
parseHex(<hexadecimal_field>) as <field>
parseHex("<hexadecimal_string>") as <field>
Rules
parseHex("ABCD")
andparseHex("0xABCD")
are both valid formats.
Example
Parse a hexadecimal value to a decimal value.
The following query will convert a hexadecimal string to a decimal number.
* | parseHex("12D230") as decimalValue
It provides the following results: