I have a free text which might contains html-like definition of table, for example:
This is free text..... More free text... table start *row start*
cell 1 content# #cell 2 content
cell 3 content
row end*table end* More free text which might contain more tables definitions.
I'm looking for the best way to parse tables from such text in C#. I've read that regular expressions are not good for such text. Can any one help with this matter?
Thanks in advance.