Im metin formu html ayıklamak için:htmlagilitypack - komut dosyasını ve stili kaldırılsın mı? Aşağıdaki yöntem kullanılarak
public string getAllText(string _html)
{
string _allText = "";
try
{
HtmlAgilityPack.HtmlDocument document = new HtmlAgilityPack.HtmlDocument();
document.LoadHtml(_html);
var root = document.DocumentNode;
var sb = new StringBuilder();
foreach (var node in root.DescendantNodesAndSelf())
{
if (!node.HasChildNodes)
{
string text = node.InnerText;
if (!string.IsNullOrEmpty(text))
sb.AppendLine(text.Trim());
}
}
_allText = sb.ToString();
}
catch (Exception)
{
}
_allText = System.Web.HttpUtility.HtmlDecode(_allText);
return _allText;
}
Sorun ben de senaryo ve stil etiketleri elde edilmesi.
Onları nasıl hariç tutabilirim?
ne hakkında bir satır içi stil yani
? OuterHtml'de görüyorum ama tüm satır içi stilleri de çıkarmak istiyorum. – Jeremy
'if (childNode.Attributes.Contains (" stil ")) { childNode.Attributes.Remove (" stil "); } if (childNode.Attributes.Contains ("sınıf")) { childNode.Attributes.Remove ("sınıf"); } ' – Jeremy