7
A
回答
12
System.Web.HttpUtility.HtmlDecode("Col´gio");
2
SecurityElement securityElement = System.Security.SecurityElement.FromString("<test>H&M</test>");
string unescapedText = securityElement.Text;
Console.WriteLine(unescapedText); // Result: H&M
6
剛剛完成日期:
如果您使用的是.NET 4.0+你也可以使用WebUtility.HtmlDecode
相關問題
- 1. 經典ASP(VBScript)將HTML代碼轉換爲純文本
- 2. 將html代碼轉換爲純文本內div或textarea
- 3. 將HTML文本轉換爲純文本
- 4. 將HTML轉換爲純文本剃刀
- 5. textarea html標籤轉換爲純文本
- 6. Ruby:將HTML/Redcloth轉換爲純文本
- 7. 轉換格式的純文本HTML
- 8. 將純文本輸入轉換爲HTML
- 9. 將html轉換爲純文本jquery .ajax
- 10. 轉換純PHP代碼笨
- 11. 如何從純文本轉換爲URL編碼html
- 12. 轉換HTML頁面,以純文本使用PHP
- 13. MediaWiki to純文本轉換
- 14. PHP代碼在HTML代碼中顯示爲純文本
- 15. 如何將HTML文本轉換爲純文本?
- 16. 如何將html文本轉換爲報表中的純文本
- 17. 如何將純文本轉換爲android中的html文本?
- 18. 以編程方式將LaTeX代碼轉換/解析爲純文本
- 19. 轉換Zalgo文本爲純文本
- 20. 將純文本HTML轉換爲真正的HTML MySQL> Excel
- 21. 如何將純文本轉換爲HTML中的html格式
- 22. jQuery的轉換爲純JavaScript代碼
- 23. 將代碼從jquery轉換爲純javascript
- 24. 將HTML轉換爲純文本維護換行符
- 25. 將腳本html標記轉換爲純文本
- 26. HTML轉換爲純文本,並保持基本格式
- 27. 從CSS轉換爲純HTML
- 28. 將html代碼轉換爲actionscript代碼
- 29. 代碼到html轉換器
- 30. jinja2插入純html代碼
見http://stackoverflow.com/questions/1144535/c-sharp-htmlencode-from-class-library或http:/ /stackoverflow.com/questions/122641/how-can-i-decode-html-characters-in-c。還有很多其他的實例 - 你需要Html解碼字符串。 – dash