I have requirement where I have input Html like this –
<col name="col1">Text1</col>
<col name="col2">Text2</col>
<col name="col3">text3</col>
Now I have to parse this Html and create a csv file with below output –
col1,col2,col3
Text1,Text2,text3
Please let me know how can this be achieved in C#.
I used this regular expression and it worked gr8…