Hey Stack Overflow members, I am trying to parse this text and get two separate matches, the unordered markdown list blocks. The problem is that i cannot figure out a way to match them. There maybe text after them.
I am using JavaScript flavored regex.
This is what i have been trying, full example: Regex101
(\*|\t\*|\s+\*).*
List:
* Item 1
* Item 2
* Item 2a
* Item 2b
* Item 1
* Item 2
* Item 2a
* Item 2b
Thank you in advance for your help.