情况:我有一个 XML 文件(大部分是布尔逻辑)。我想做的:通过该节点中属性的内部文本获取节点的索引。然后将子节点添加到给定的索引。
例子:
<if attribute="cat">
</if>
<if attribute="dog">
</if>
<if attribute="rabbit">
</if>
我可以获得给定元素名称的索引列表
GetElementsByTagName("if");
但是如何通过使用属性的内部文本来获取节点列表中节点的索引。
基本上是在想一些事情
Somecode.IndexOf.Attribute.Innertext("dog").Append(ChildNode);
以此结束。
<if attribute="cat">
</if>
<if attribute="dog">
<if attribute="male">
</if>
</if>
<if attribute="rabbit">
</if>
创建节点并将其插入索引,我没有问题。只需要一种获取索引的方法。