I need to parse a large amount of text that uses HTML font tags for formatting,
For instance:
<font face="fontname" ...>Some text</font>
In particular, I need to determine which characters will be displayed using each font used in the text. I need to be able to handle things like font tags inside another font tag.
I need to use C # for this. Is there some kind of C # parser class to make this easier? Or should I write this myself?
Thanks!
source share