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: