Code csharp

HTML Parsing using HTML Agility Pack .NET

visibility 117 comment 0 access_time 10 months ago language English
using HtmlAgilityPack;
using System.Linq;

var html = @"
<p>This is a test paragraph.</p>
<script type='text/javascript'>
var a =1;
console.log(a);
</script>
";

// From String
var doc = new HtmlDocument();
doc.LoadHtml(html);

// Clean out all script elements
var scriptElements = doc.DocumentNode.Descendants("script");
if(scriptElements !=null){
	foreach(var el in scriptElements.ToList()){
		el.Remove();
    }
}
Loading...
copyright This page is subject to Site terms.
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts

fork_right
more_vert

Code description

HTML Agility Pack (HAP) is one of the most commonly used .NET package to parse HTML. It creates a document object model in memory, which can be use to manipulate the nodes (including both elements and attributes). 

The package can be added to your project from NuGet via the following CLI:

dotnet add package HtmlAgilityPack --version 1.11.43

This code snippet provides one example of using this HAP to remove all script elements. The script can be run as C# script

For more details, refer to Html Agility Pack.