Roman
Roman

Reputation:

How to parse an HTML with PHP/ASP.NET?

The question is not really about parsing the HTML, but rather parsing the HTML and adding elements to the DOM according to the HTML tags. For example - I want to be able to take an HTML page, add attribute to the HTML tags - such as "class='replace'", put some PHP/ASPNET code in the page (make an ASPX page with ASPNET or put some include with PHP) and make them parse the page every time it is accessed and manipulate the DOM of the tags marked as 'class="replace". For example if I have < div class='replace'>< /div>, after I run the script I'll get something like < div class='replace'>This is a new text< /div>

Thanks, Roman

Upvotes: 0

Views: 993

Answers (2)

symcbean
symcbean

Reputation: 48357

See

in PHP, how to remove specific class from html tag?

For complex and simple solutions in PHP using DOM parser object or preg_replace.

C.

Upvotes: 0

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798676

HTML parser for PHP, and one for .NET.

Upvotes: 0

Related Questions