xsl-list
[Top] [All Lists]

Re: [xsl] save elments to an array and use later

2013-12-03 04:32:18
henry human wrote:
thanks Martin
Now what if the conditon to save those elements is a little different:
Example:
<root>
.....
  <child>
     <transfer>N</transfer>
     <station>I</station>
     <test>A</test>
  <test1>A</test1>
<test2>O</test2>
  <lement1>F</element1>
<lement2>W</element1>
<lement3>W</element3>
</child>
  <child>
     <transfer>F</transfer>
     <station>B</station>
     <test>M</test>
   <test1>A</test1>
<test2>P</test2>
  <lement1>P</element1>
  <lement2>F</element2>
<lement3>F</element3>
</child>
........
</root>

  if test = 'A' and element1 = 'F' or test1 = 'A' and element2 = 'F' or test3 = 
'A' and element3 = 'F' .....

Assuming XSLT 2.0 you could use

<xsl:variable name="v1" select="root/child[test = 'A' and (element1, element2, element3) = 'F']"/>

But if you are happy to spell out your condition then of course you nearly literally write what you have above

<xsl:variable name="v1" select="root/child[(test = 'A' and element1 = 'F') or (test1 = 'A' and element2 = 'F') or (test3 = 'A' and element3 = 'F')]"/>



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--