[ Web Proxy ]
URL:
Viewing: https://cloud.google.com/workflows/docs/reference/stdlib/text/match_regex [Back]  [Original]

Function: text.match_regex  |  Workflows  |  Google Cloud Documentation Skip to main content
Google Cloud Documentation [Google Cloud Documentation]
Send feedback

Function: text.match_regex Stay organized with collections Save and categorize content based on your preferences.

Reports whether a string contains a match of a regular expression.

Arguments

Arguments
source

string

The string that will be searched.

regexp

string

The regular expression that is matched. Uses RE2 syntax.

Returns

True if regexp matches a substring in source and false otherwise.

Raised exceptions

Exceptions
TypeError If either source or regexp is not a string.
ValueError If regexp is not UTF-8 encoded or is an invalid regular expression.

Examples

Example 1

# Test match of regular expression; returns `true`
- returnStep:
    return: ${text.match_regex("HelloWorld", "Hello|Goodbye")}

Example 2

# Test match of regular expression; returns `false`
- returnStep:
    return: ${text.match_regex("HelloWorld", "Goodbye")}
Send feedback

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 2026-08-11 UTC.

Need to tell us more? [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-08-11 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page