I have a sense that I can do this with the Formatter, but I’m not quite sure how to do it?
Overall, i’m looking to extract a unique Id from within a url pattern, for example
http://www.example-domain.com/{string-of-numbers-and-letters}/edit
- My trigger will include a chunk of HTML content.
- I’ll filter the Zap steps to only continue when it contains the beginning URL structure i’m looking for, but the URL itself will be wrapped within a bunch of other text and html code
Example:
<p> hey, danny.</p>
<p> try this link: http://www.example-domain.com/{string-of-numbers-and-letters}/edit </p>
<p> hope this helps!</p>
How do I go about extracting that unique Id string from within the URL pattern so that I can use it in subsequent steps?
(If it helps, my use case is that subsequent steps are using this unique Id in API calls that need that Id)