Click here to Skip to main content
16,023,001 members

Comments by diadtp (Top 4 by date)

diadtp 10-Dec-23 13:49pm View    
ok I was using Visual Studio, it works now for me. Another question - In case there are multiple child nodes like <values1>, <values2>, ...,<valuesn>; this will only get me the output for the nth Value node right?

<elements>
<element>
<token>Token1
<values1>1,2
<values2>1,2

<element>
<token>Token2
<values1>4,5
<values2>5,6




so how to get output like this - 1,2|4,5 and 1,2|5,6

thanks for the help!
diadtp 10-Dec-23 0:05am View    
This works for case 2 when al tokens are distinct, but for case 1 with 2 same token nodes it is looping twice and giving this result - 1,2;7,8| 4,5| 1,2;7,8|
diadtp 5-Apr-23 22:37pm View    
Thanks!
diadtp 5-Apr-23 21:06pm View    
can you give an example?