Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 RSS 提要(我无法控制它),但它有一些 HTML 特殊字符(特别£是)在 VB 中有什么方法可以删除这些吗?我尝试使用以下内容,但没有成功。
£
Dim Fixer As String = e.Result Fixer.Replace("£", "") Dim resultElements As XElement = XElement.Parse(Fixer)
有帮助
你试过HttpUtility.HtmlDecode吗?
您应该在每个文本字段而不是完整的 XML 上使用这种转换。如果有 > 或类似的,您将销毁 XML。