This commit is contained in:
Joel Wetzell
2026-05-17 21:12:04 -05:00
parent 69bc31d3f1
commit 8e6cd58006
82 changed files with 642 additions and 450 deletions
+7 -4
View File
@@ -1,19 +1,22 @@
---
title: Parse Float
sidebar:
label: Parse
order: 1
label: Parse
order: 1
---
The `float.parse` processor takes a string and parses it as a float with the specified `base` and `bitSize`. This processor will return an error if the message being processed is not a string or if the string cannot be parsed into a float.
- **type**: `float.parse`
- **params**:
- **bitSize**: (optional) the bit size of the float to parse, defaults to 64
- **bitSize**: (optional) the bit size of the float to parse, defaults to 64
### Example
This would parse the string payload as a 32 bit float and set the payload to that value.
```yaml
- type: float.parse
params:
bitSize: 32
```
```