Split By Length
PureSplitByLengthSplits a string into chunks of the specified length.
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
| ChunkSize | int | — | ChunkSize parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | TArray<FString> | ReturnValue output |
Example Use Cases
Example 1
Break a long message into pages.
Example 2
Chunk data for transmission.