Sample code for 30+ languages & platforms
Rust

Xml.UpdateAttrAt Example #2

Another Xml.UpdateAttrAt example...

Chilkat Rust Downloads

Rust
let xml = chilkat::Xml::new();
xml.set_tag("abc");

let sb_value = chilkat::StringBuilder::new();

let mut i = 0;
while i < 10 {
    xml.set_i(i);
    sb_value.clear();
    let _ = sb_value.append_int(i);
    let _ = xml.update_attr_at("xyz|test[i]", true, "index", &sb_value.get_as_string().unwrap_or_default());
    i = i + 1;
}

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

// Output is:

// 	<?xml version="1.0" encoding="utf-8" ?>
// 	<abc>
// 	    <xyz>
// 	        <test index="0" />
// 	        <test index="1" />
// 	        <test index="2" />
// 	        <test index="3" />
// 	        <test index="4" />
// 	        <test index="5" />
// 	        <test index="6" />
// 	        <test index="7" />
// 	        <test index="8" />
// 	        <test index="9" />
// 	    </xyz>
// 	</abc>