Regex .NET attached named group
问题 I want to get attached named group. Source text: 1/2/3/4/5|id1:value1|id2:value2|id3:value3|1/4/2/7/7|id11:value11|id12:value12| Group1: 1/2/3/4/5|id1:value1|id2:value2|id3:value3| Sub groups: id1:value1| id2:value2| id3:value3| Group2: 1/4/2/7/7|id11:value11|id12:value12| Sub groups: id11:value11| id12:value12| How I can do this? 回答1: While this task is easy enough without the complication by splitting, .Net regex matches hold a record of all captures of every group (unlike any other flavor