D
David
This is my xml sample:
<po>
<PurchaseOrderDetail>
<ProductLineItem>
<LineNumber>1</LineNumber>
<ProductIdentification>
<aaa>...</aaa>
<bbb />
</ProductIdentification>
<cc />
</ProductLineItem>
....
</PurchaseOrderDetail>
<PurchaseOrderDetail>
<ProductLineItem>
<LineNumber>2</LineNumber>
<ProductIdentification>
<aaa>...</aaa>
<bbb />
</ProductIdentification>
<cc />
</ProductLineItem>
....
</PurchaseOrderDetail>
</po>
I want to select "PurchaseOrderDetail" tag count, like this sample, I
should get "2". How should I get the count of it?
Thanks, David.
<po>
<PurchaseOrderDetail>
<ProductLineItem>
<LineNumber>1</LineNumber>
<ProductIdentification>
<aaa>...</aaa>
<bbb />
</ProductIdentification>
<cc />
</ProductLineItem>
....
</PurchaseOrderDetail>
<PurchaseOrderDetail>
<ProductLineItem>
<LineNumber>2</LineNumber>
<ProductIdentification>
<aaa>...</aaa>
<bbb />
</ProductIdentification>
<cc />
</ProductLineItem>
....
</PurchaseOrderDetail>
</po>
I want to select "PurchaseOrderDetail" tag count, like this sample, I
should get "2". How should I get the count of it?
Thanks, David.