cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Convert String to Number or Integer format

nikhilchandra
Visitor

Hi Experts

May i know which function to use to convert string value in to Integer or Number format?

2 REPLIES 2

nikhilchandra
Visitor

@Mizső  but i am getting null output, as the input value is a string.

krzysztof_hoja
Dynatrace Pro
Dynatrace Pro

toLong() conversion function , but the string being parameter needs to be a valid number, otherwise you will get null

data 
  record(s="1"),
  record(s="1.2"),
  record(s="a")
| fieldsAdd i=toLong(s), d=toDouble(s)

krzysztof_hoja_0-1725183035460.png

 

Featured Posts