get a list of substrings which fall under a specific regex category c#.net
- by Jronny
for example, in my originalString:
"The {quick} brown fox jumps over {the} {lazy}} dog near {{the{} bank"
the result would be
quick, the, lazy}, {the{
i have used "/{([^}]*)}/" but don't know how to implement this to collect the items i need.
Please help. Thanks.