[[["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 2025-08-28 UTC."],[],[],null,["# Function: text.match_regex\n\nReports whether a string contains a match of a regular expression.\n\nArguments\n---------\n\nReturns\n-------\n\nTrue if `regexp` matches a substring in `source` and false otherwise.\n\nRaised exceptions\n-----------------\n\nExamples\n--------\n\n### Example 1\n\n```yaml\n# Test match of regular expression; returns `true`\n- returnStep:\n return: ${text.match_regex(\"HelloWorld\", \"Hello|Goodbye\")}\n```\n\n### Example 2\n\n```yaml\n# Test match of regular expression; returns `false`\n- returnStep:\n return: ${text.match_regex(\"HelloWorld\", \"Goodbye\")}\n```"]]