I am new to regular expression and want to create two regexes for my .net application.
I have an input variable which stores an xml. Below is the xml
<Row>
......
</Row>
<Row {optional}>
....
</Row>
<Row {optional} header="true" {optional}>
</Row>
I want 2 regexes: 1. Regex which selects Rows with header="true" 2. Regex which selects Rows which do not have header="true"
Regex only have to consider opening tag. eg: