See the supported connectors for Application Integration.

SET function

SET function

Function Name Description Usage Input parameter Return value
SET Updates the value of a string array at the specified index. SET(value,value) This function takes the following arguments:
  • First argument (integer): Index of the string array where the value should be updated.
  • Second argument: The replacement string.
Updated string array.

Supported data type

The SET function supports the following data types:

  • Boolean array
  • Double array
  • Integer array
  • String array

Example: Update the value of a string array at an index

Sample data: $var1$ = {"Hello","World","Integrations"}

Usage: $var1$.SET(2,"Apigee")

Update var1 at index 2.

Output: {"Hello","World","Apigee"}

Recommendation