I'm new to textFSM. Trying to use the same value to find and save multiple instances of a value matches across multiple lines of input text. I have tried a number of different constructs but none provides the desired output.
Input
set=
1. text1 2. text2 3. text3
4. text4 5. text5
6. text6
Template file:
Value List alm (\S+)
Start
^\s*\d+.\s+${alm} -> Continue.Record
Actual Result: [text1, text4, text6]
Desired Result: [text1, text2, text3, text4, text5, text6]
Any pointers on how to achieve the desired results?