Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) XML Accumulate Tag ContentDemonstrates how to use the AccumulateTagContent method of the XML class. Imagine the XML document for this test contains the following: <?xml version="1.0" encoding="utf-8"?> <abc> <zzz>The quick brown fox</zzz> <xyz> <zzz>hello world!</zzz> </xyz> <mmm> <zzz>jumped over the lazy dog.</zzz> </mmm> </abc>The result of accumulating the content for all "zzz" nodes, but skipping subtrees rooted at "xyz" nodes, is the string "The quick brown fox jumped over the lazy dog."
Dim xml As Chilkat.Xml Set xml = Chilkat.NewXml success = xml.LoadXmlFile("my_document.xml") If (success <> True) Then Debug.Print xml.LastErrorText Exit Sub End If ' Accumulate the textual content within the "zzz" nodes of this ' XML. Skip sub-trees rooted at nodes having the tag "xyz". ' For the given test XML, the resulting accumulated text should be: ' "The quick brown fox jumped over the lazy dog." Debug.Print xml.AccumulateTagContent("zzz","xyz") |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.