I have a stream of HTML code that looks like this:
<br><br><font color=Blue>Item Name:</font> My first item<br>
<font color=Blue>Item Type:</font> My item type<br>
<font color=Blue>Item Color:</font> My item color<br><br>
My idea is to parse at every >
sign till the next <
to get the strings like Item Name:
or My first item
, but it should be that way that if there is only one char between like >0<
or >#
< it shouldn't be stored.
How to do this with C# and writing an output to the console?