Data transformation and string output modules
- Last UpdatedJun 29, 2026
- 1 minute read
Property Mapper module
The Property Mapper module is a versatile tool for modifying message structures. Use this module to perform the following actions:
-
Rename properties
-
Move properties to new hierarchy levels
-
Remove properties
-
Add new properties with static values
-
Copy existing property values to new properties
Modules used to convert string outputs
The following table lists different modules used to convert text and string inputs.
|
Name |
Description |
Input |
Output |
|---|---|---|---|
|
Text Template |
Generates text messages based on a template provided in the settings. Template syntax can be used to insert data from the message together with static text. |
Message |
String |
|
String Replace |
Replace a substring with another substring. |
String |
String |
|
String Substring |
Select a substring based on start and stop positions. |
String |
String |
|
CSV Line Parser |
Break up a line of text (string) into substrings based on a delimiter. Example: “,”. The output is an object with one property per substring. These properties are named based on the position in the string. Example: col1, col2. |
String |
Object with substrings |
|
CSV Text Parser |
Same operation as the CSV Line Parser but operating on multi-line strings. The output is an array with one element per line. Each element has the same format as with the CSV Line Parser. |
String |
Array of objects with substrings |