Sample code for 30+ languages & platforms
Rust

Using CDATA in XML

See more XML Examples

Demonstrates how to force the content of a node to be encapsulated in CDATA.

The output of the following program is an XML document that looks like this:


<root>
    <year>2009</year>
    <junk1>abc .. &lt; &amp; &gt; 123</junk1>
    <junk2><![CDATA[abc .. < & > 123]]></junk2>
</root>

Chilkat Rust Downloads

Rust
let xml = chilkat::Xml::new();

xml.set_tag("root");

let child1 = xml.new_child("year", "2009").unwrap();

let child2 = xml.new_child("junk1", "abc .. < & > 123").unwrap();

let child3 = xml.new_child("junk2", "abc .. < & > 123").unwrap();
child3.set_cdata(true);

println!("{}", xml.get_xml().unwrap_or_default());