• Delphi操作XML:TXmlNodeList




    4.1.17.TXmlNodeList



      TXmlNodeList
    = class(TList)

      TXmlNodeList是一个继承自TList的工具。

      例子如下:

    procedure FindAllZips(ANode: TXmlNode);

    var

      i: integer;

      AList: TXmlNodeList;

    begin

      AList := TXmlNodeList.Create;

      try

        // Get a list of all nodes named 'ZIP'

        ANode.NodesByName('ZIP', AList);

        for i := 0 to AList.Count - 1 do

          // Write the value of the node to output. Since
    AList[i] will be

          // of type TXmlNode, we can directly access the
    Value property.

          WriteLn(AList[i].Value);

      finally

        AList.Free;

      end;

    end;

    4.1.17.1.Items

      property
    Items [Index: Integer]: TXmlNode;

    4.1.17.2.ByAttribute

      function ByAttribute(const
    AName: UTF8String; const AValue: UTF8String): TXmlNode;

      返回属性名称为AName,并且属性值为AValue的第一个节点。



  • 相关阅读:
    POJ-2456(二分+贪心)
    二分的神奇边界
    最大值最小化
    HDU6231(二分+尺取)
    POJ 1321
    document操作例题1-延迟注册与二级菜单
    DOM2-document操作
    DOM1-基本概念及window操作
    函数递归调用
    JS基础4-函数
  • 原文地址:https://www.cnblogs.com/acuier/p/2352270.html
Copyright © 2020-2023  润新知