Formatting string in XML format and remove invalid attribute characters
问题 I've a string say "<Node a="<b>">" . I need to escape only the data and parse this string as a node in XMLWriter. Hence how to escape only the attribute value "<" and note the XML structure's "<". 回答1: using (var writer = XmlWriter.Create(Console.Out)) { writer.WriteStartElement("Node"); writer.WriteAttributeString("a", "<b>"); } Output <Node a="<b>" /> Firstly you should parse the string. Since this is not valid xml, you can't use an xml parser. You can try HtmlAgilityPack. Then you can