Created
August 20, 2018 07:47
-
-
Save trycf/4031ebc027c788574948183387b56b68 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfxml variable="myXMLVar"> <myXML a="b"> <foo>foo1</foo> <foo>foo2</foo> <foo></foo> <bar>bar1</bar> <bar></bar> foobar </myXML> </cfxml> | |
<cfscript> | |
writeDump(myXMLVar.myXML.update("xmlText", "bla bla"))//returns a useless struct that doesn't contain the "bla bla" XmlText (bad) | |
writeDump(myXMLVar) | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment