I have an array in one XML node like this
<Array>1, 2, 3</Array>
How do I count the number of values (in this case 3) in this array using XSLT ?
I can find a lot of articles where the values are placed in separate XML nodes like this
<Array>1</Array> <Array>2</Array> <Array>3</Array>
, but this does not apply to my problem.
I have tried figuring it out myself, without any luck.
New contributor
Erik ebsolutions is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.