Whatever message this page gives is out now! Go check it out!

XmlClear

Last update:
May 18, 2026

Description

Accepts an XML object as an argument and clears it.

Returns

None

Category

Syntax

XmlClear(node)

Parameters

ParameterDescription
nodeThe XML node to clear.

Example

<cfxml variable="xmlData">
  <root>
    <item id="1">Item 1</item>
    <item id="2">Item 2</item>
    <item id="3">Item 3</item>
  </root>
</cfxml>
<cfscript>
    writeDump(xmlData)
    XmlClear(xmlData.root.item[2])
    writeOutput("<br/>" & "The output after clearing the value of the second item:" & "<br/>")
    writeDump(xmlData)
</cfscript>

Try in CFFiddle

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page