What's the fastest way of parsing HTML?
#6
Regarding parsing HTML with regexps. Regexps can be used for picking relatively simple patterns and they are indeed very fast because they do not have the overhead of building a parsing tree. But with complex parsing criteria they simply become unmaintainable mess. That is why it's generally not recommended to parse HTML with regexps, but, of course, you should take into account your specific situation.
Reply


Messages In This Thread
RE: What's the fastest way of parsing HTML? - by Roman_V_M - 2019-06-26, 19:31
Logout Mark Read Team Forum Stats Members Help
What's the fastest way of parsing HTML?0