What is your goal?
I use regexp:AdvancedParser (module 111) with this pattern:
topic_id: ([\w-]+) | label: ([^|]+) | article_date: ([\d-]+) | newspaper: (.+)
I need to use only the first capture group ($1, the topic_id) as the Key in a downstream datastore module. The picker only shows “Fallback Match” which contains the entire matched string, not the individual groups.
What is the problem & what have you tried?
The Fallback Match pill inserts the full match string (e.g. “topic_id: energy-crisis | label: …”) instead of just “energy-crisis”. I need only $1. I tried using Name and Value pills but those are not the capture groups. How do I access individual capture groups ($1, $2 etc.) from regexp:AdvancedParser in subsequent modules?






