[Solved] Remove HTML Tags in C [closed]


Regular expressions aren’t suited for parsing HTML. As long as you have XHTML, that’s guaranteed to be valid XML, so you can use an XML parser library for parsing it.

4

solved Remove HTML Tags in C [closed]