PureBasic
PureBasic
Benefit of XML Methods Having Names Ending in "2"
See more XML Examples
The Chilkat XML methods having names ending with "2" update the internal reference rather than return a new XML object instance. See the example below..Note: There are a few methods, such as LoadXml2, where the "2" simply indicates the method is the same but has an additional argument. (There are some programming environments where overloading methods is not allowed. Therefore, Chilkat will avoid providing methods having the same name but with different arguments.)
Chilkat PureBasic Downloads
IncludeFile "CkXml.pb"
Procedure ChilkatExample()
success.i = 0
x.s = "<test><abc><xyz>123</xyz></abc></test>"
xml.i = CkXml::ckCreate()
If xml.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkXml::ckLoadXml(xml,x)
; First demonstrate getting "123" in the simplest way:
Debug CkXml::ckChilkatPath(xml,"abc|xyz|*")
; Now demonstrate navigating to the "xyz" node using non-"2" methods.
; The following few lines of code create two object instances, which will need
; to be deleted or garbage collected.
xAbc.i = CkXml::ckFindChild(xml,"abc")
xXyz.i = CkXml::ckFindChild(xAbc,"xyz")
Debug CkXml::ckContent(xXyz)
CkXml::ckDispose(xXyz)
CkXml::ckDispose(xAbc)
; Now demonstrate navigating to the "xyz" node using the "2" methods.
; No object instances are created.
success = CkXml::ckFindChild2(xml,"abc")
success = CkXml::ckFindChild2(xml,"xyz")
Debug CkXml::ckContent(xml)
; Restore xml back to the root of the document.
CkXml::ckGetRoot2(xml)
CkXml::ckDispose(xml)
ProcedureReturn
EndProcedure