convert all .md to .mdx

This commit is contained in:
Joel Wetzell
2026-03-28 14:59:10 -05:00
parent 694c0e505a
commit a8fc730eed
61 changed files with 0 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
title: Parse Int
sidebar:
label: Parse
order: 1
---
The `int.parse` processor takes a string and parses it as an integer 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 an integer.
- **type**: `int.parse`
- **params**:
- **base**: (optional) the base to use for parsing the integer, defaults to 10
- **bitSize**: (optional) the bit size of the integer to parse, defaults to 64
### Example
This would parse the string payload as a 32 bit, base 10 integer and set the payload to that value.
```yaml
- type: int.parse
params:
bitSize: 32
```