Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Attempts to convert a string representation of a number to a floating-point numeric equivalent. If successful, returns the string as a floating point numeric value, otherwise returns the default value.Syntax
ParseFloatOrDefault(string_expression, default_value)
Arguments
string_expression - string default_value - floatExamples
ParseFloatOrDefault(string1,1.1f) Using string1 as input
ParseFloatOrDefault('0.551',1.1f) Will output: “0.551”
ParseFloatOrDefault('Testing',1.1f) Will output “1.1”