REPLACE_ALL function

REPLACE_ALL function

Function Name Description Usage Input parameter Return value
REPLACE_ALL Replaces all the occurrences of a substring in a string. REPLACE_ALL(value, value) This function takes the following arguments:
  • First argument: String to match in the existing string.
  • Second argument: The replacement string.
Updated string with the replaced values.

Supported data type

The REPLACE_ALL function supports the following data type:

  • String

Example: Replace all the occurrences of a substring with a new value.

Sample data: $var1$ = "HelloApigee"

Usage: $var1$.REPLACE_ALL("Apigee", "Google")

Return the current string "HelloApigee", with any substrings matching "Apigee" replaced with "Google."

Output: HelloGoogle

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年11月24日 UTC.