This operation is used to decode escape sequences in a string back to their original characters. Escaped strings are often used in programming, web development, or data transmission to represent special characters that cannot be directly included in text.
These are the input/output expected data types for this operation:
- String with escape characters.
- Resulting unescaped string.
Suppose you want to unescape characters in a series of input strings. To do it:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Unescape string.
Give your Output field a name and click Save. All the escape characters will be removed. For example:
You can try out operations with specific values using the Input field above the operation. You can enter the value in the example above and check the result in the Output field.
This operation is used to encode or "escape" characters in a string so that they can be safely used in different contexts, such as URLs, JSON, HTML, or code. This operation is helpful when you need to format text with special characters in a way that won’t break syntax or cause unintended effects in various data formats.
These are the input/output expected data types for this operation:
- Strings with the characters you want to escape.
- Strings with the required escaped characters.
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Suppose you want to escape characters that are between "
in a series of input strings. To do it:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Escape String.
Set Escape Level to Special chars
.
Set Escape Quote to "
.
Set JSON compatible to false
.
Give your Output field a name and click Save. Matching characters will be escaped. For example:
You can try out operations with specific values using the Input field above the operation. You can enter the value in the example above and check the result in the Output field.