How do I turn a string field value to an integer?
Tony Reinke - Cribl
Posts: 134 admin
I need to turn a string field value into an integer, how do I do that?
1
Best Answer
-
The Numerify Function converts event fields that are numbers to type number .
Numerify | Cribl Docs
Extract numeric values from event fields
1
Answers
-
The Numerify Function converts event fields that are numbers to type number .
Numerify | Cribl Docs
Extract numeric values from event fields
1 -
Another way to do this with JavaScript code is to use the Number class or the Unary plus operator.
Number(field) or +field are equivalent.
If you have a hexadecimal number, you can use the Number.parseInt() function to convert from base 16 to base 10 (decimal).
Number.parseInt(field, 16)
0