How do I parse HTML using regular expressions in C#?

前端 未结 5 1313
野的像风
野的像风 2021-01-28 13:49

How do I parse HTML using regular expressions in C#?

For example, given HTML code

 t1      sp         


        
5条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-28 14:27

    Regular expressions are a very poor way to parse HTML. If you can guarantee that your input will be well-formed XML (i.e. XHTML), you can use XmlReader to read the elements and then print them out however you like.

提交回复
热议问题