How to use the RegexFlow Connector
- Create a new flow
- "Add an action" and search for regexflow
From the result select "Regex pattern matching in the posted text"
2b. If it is being used for the first time then the API key is needed to be added
The key can be found in the Profile page of the portal Profile
- Fill in the regex pattern and the body parameters
- How to use the result:
Using the first match in some other action:
outputs('Regex_pattern_matching_in_the_posted_text')?['body/matches']?[0]?['Match']
Example of using the first group in the first match:
outputs('Regex_pattern_matching_in_the_posted_text')?['body/matches']?[0]?['groups']?[0]?['groupValue']
- Result