Appendix I - Functions

The available functions for transforming a mapping value are the following:

Substring

Keeps a specific substring of the original value, starting from the specified character index of the original string and ending at the specified end index.

Substring after

Keeps a specific substring of the original value, starting from the specified character index of the original string and until the end of the original string.

Substring before

Keeps a specific substring of the original value, starting from the beginning of the original string and ending at the specified end index.

Split

Splits the string to substrings when encountering the specified delimiter. Keeps the substring located at the specified index.

Original string: a;b;c;d
Delimiter: ;
Index: 2
Result: c