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

前端 未结 5 1310
野的像风
野的像风 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:10

    This has already been answered literally dozens of times, but it bears repeating: regular expressions can only parse regular languages, that's why they are called regular expressions. HTML is not a regular language (as probably every college student in the last decade has proved at least once), and therefore cannot be parsed by regular expressions.

提交回复
热议问题