Updates a part of an XML document (elements, attributes, or nodes) with a new value.
xmlUpdate(node, xpath, value)
→ returns void
Updates the text node of root in a simple XML document
xmlData = xmlParse('<root><item id="1">Item 1</item><item id="2">Item 2</item><item id="3">Item 3</item></root>');
xmlUpdate(xmlData.root, "xmlText", "hello world!");
writeOutput(xmlData.toString());
Expected Result: <?xml version="1.0" encoding="UTF-8"?> <root><item id="1">Item 1</item><item id="2">Item 2</item><item id="3">Item 3</item>hello world!</root>
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.