Example: Chaining Multiple Functions
About this task
For example, you could build a mapping rule that uses multiple functions as described in the following sequence:
Procedure
- A source node of type: string is the input parameter to the trim function.
- The trim function removes trailing and leading white space from the input parameter and the resulting string is returned.
- The return string of the trim function is the input parameter to the lowercase function.
- The lowercase function converts each of the uppercase characters of the input string into their lowercase form and the resulting string is returned.
- The return string of the lowercase function populates the destination node of type: string.
Results