Skip to content

ParseFloat

Name Mandatory Description Default Type
⬅️ Input A string representing a number. String
Output ➡️ A floating-point number equivalent to the number contained in the string input. Float

Converts the string representation of a number to its floating-point number equivalent.

Examples

1
2
"3.14" | ParseFloat | Log
Assert.Is(3.14 Break: true)

[info] [sample-wire] 3.14