Page 1 of 1

valid node count

Posted: Fri Aug 31, 2018 3:31 pm
by abonsey
Hi All,
I have some XML data and I need the Switch flow to decide what is the next step based on the number of nodes populated. In the extract below only 2 section nodes are valid but it could be up to 4.
My question is how I get Switch to see how many nodes are populated?

<sections>
<year>XXXX</year>
<level>XX</level>
<version></version>
<section>1</section>
<section>2</section>
<section></section>
<section></section>
</sections>

TIA
Andrew

Re: valid node count

Posted: Mon Sep 10, 2018 8:01 am
by r.zegwaard
A xpath-expression like: count(//section) should do it...
(didn't test it)