Eterlogic virtual serial ports emulator

Text transformer

Description

Transformer is processing data before sending it to next transformer or to final recipient.

This transformer will not work correctly with binary data.

Text transformer properties:

Example: Removing digits from specific string

To replace data like "test123", "test33333" etc to just "test", use the following regex expression:

Regex_ReplaceFrom: test([\d]+)
Regex_ReplaceTo: test

Example: Removing specific character

To remove all '1' characters from stream, set Regex_ReplaceFrom to 1 and set Regex_ReplaceTo to empty string:

Regex_ReplaceFrom: 1
Regex_ReplaceTo:

Example: Replacing all '1's with '2's:

Regex_ReplaceFrom: 1
Regex_ReplaceTo: 2

2007-2025 Eterlogic Software