Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/493f0ae6ba00a7d2b528394fa36a1898 to your computer and use it in GitHub Desktop.
Save trycf/493f0ae6ba00a7d2b528394fa36a1898 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfxml variable="myXMLVar"><myXML><a b="c">d</a><a>e</a>f</myXML></cfxml>
<cfscript>
structDelete(myXMLVar.myXML, "a")
try {
myXMLVar.myXML.delete("a")
}
catch(any e) {writeOutput(e.message)}
writeDump(myXMLVar)
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment