See the supported connectors for Application Integration.

REMOVE function

REMOVE function

Function Name Description Usage Input parameter Return value
REMOVE Removes the specified value from an array. REMOVE(value) Value to remove. Updated array after remvoing the specified value.

Supported data type

The REMOVE function supports the following data types:

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

Example: Remove a string from a string array

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

Usage: $var1$.REMOVE("Integrations")

Remove Integrations from var1

Output: {"Hello","Apigee"}

Recommendation