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 an integer numeric equivalent. If successful, returns the string as an integer numeric value, otherwise returns the default value.Syntax
ParseIntOrDefault(string_expression, default_value)
Arguments
string_expression - string default_value - integerExamples
ParseIntOrDefault(string1,42) Using string1 as input
ParseIntOrDefault(‘2015’,42) Will output: “2015”
ParseIntOrDefault(‘School’,42) Will output: “42”