CONTAINS function

CONTAINS function

Function Name Description Usage Input parameter Return value
CONTAINS Checks the occurrence of the specified value in a given string or string array. CONTAINS(value) Value to search. A boolean. Returns TRUE if a match is found and FALSE otherwise.

Supported data type

The CONTAINS function supports the following data types:

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

Example: Check the occurrence of a sequence of characters in a string

Sample data: $var1$ = "Hello Apigee Integrations"

Usage: $var1$.CONTAINS("xyz")

Check the occurrence of xyz in var1.

Output: FALSE

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.