--- title: toFloat --- ## Summary Floating conversion with default. ## Syntax ```c keyman.util.toFloat(s, dflt); ``` ### Parameters `s` : Type: `string` : Numeric string. `dflt` : Type: `number` : Default value if parse is unsuccessful. ### Return Value `number` : The string's conversion to a numeric value, or the default value if unsuccessful. ## Description ...