i have xml file which contains CDATA
i need to update the CDATA as like in this example.
i am modifying "span" here
<elements>
<![CDATA[-div[id|dir|class|align|style],-span[class|align]]]>
</elements>
should be updated as
<elements>
<![CDATA[-div[id|dir|class|align|style],-span[class|align|style]]]>
</elements>
i am using framework 2.0.. how to do this using xmldocument.
thank you
Just fetch the XmlCDataSection and change the Value property. Here's an example which admittedly uses LINQ to find the CData section, but the principle of changing it would be the same:
using System;
using System.Linq;
using System.Xml;
class Test
{
static void Main(string[] args)
{
string xml =
@"<elements>
<![CDATA[-div[id|dir|class|align|style],-span[class|align]]]>
</elements>";
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
XmlCDataSection cdata = doc.DocumentElement
.ChildNodes
.OfType<XmlCDataSection>()
.First();
cdata.Value = "-div[id|dir|class|align|style],-span[class|align|style]";
doc.Save(Console.Out);
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With