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

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年12月09日 UTC.