Is it possible to get the total number of XML nodes?
Also, how does one do a for-statement with XSLT?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to count the node of you XML you could use count(object/node) and it will be something like this:
The instruction above will let you know how many child nodes does your root node has
Hope this helps you.