See the supported connectors for Application Integration.

REMOVE_AT function

REMOVE_AT function

Function NameDescriptionUsageInput parameterReturn value
REMOVE_ATRemoves an element from an array at the specified index.REMOVE_AT(value)Index value in the array.Updated array after remvoing the specified element.

Supported data type

The REMOVE_AT function supports the following data types:

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

Example: Remove an element from a string array

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

Usage: $var1$.REMOVE_AT(1)

Remove string at index 1 in var1

Output: {"Hello","Integrations"}

Recommendation