The Match Regex action allows you to apply regular expression (regex) patterns to pieces of text to find and extract matching strings.Documentation Index
Fetch the complete documentation index at: https://docs.avicenna.dev/llms.txt
Use this file to discover all available pages before exploring further.

Input Text
The input text is the base text value that will be searched for the regex pattern. This can be static text or a variable.Pattern
The pattern is a regex expression that will be used to search for matches in the input text. This can be static text or a variable. Refer to this reference for help writing regex.Reference Variables

{result.[NAME].matches}for any matches not included in capture groups{result.[NAME].captures}for any matches included in capture groups{result.[NAME].[CAPTURE_GROUP_NAME]}for any matches included in named capture groups{result.[NAME].isMatch}for a true/false boolean result indicating whether any match was found
