C# HTML Kodları Temizletmek
Selamlar,
Bir açıklama metninde html kodları olduğunu ve bunları da görmek istemediğinizi varsayalım. Bunun için Regex fonksiyonu kullanılır.
Örnek bir HTML taglı cümle: string denemeCumle= "< b > Merhaba!!!!!   ;   ;   ;< font color="#228b22" >[Proj # 206010]< /font >< /b >  ;"
Buradaki HTML kodları kaldırmak için: Regex.Replace(denemeCumle, "<.*?>", String.Empty);
Bir farklı yol ise şöyle:
HtmlDocument htmlDoc = new HtmlDocument();
htmlDoc.LoadHtml(@"< b > Hulk Hogan's Celebrity Championship Wrestling   ;  ;& nbsp");
string sonuc = htmlDoc.DocumentNode.InnerText;
Iyi çalışmalar,
Recep.