Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>This short transformation</strong>:</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="text"/&gt; &lt;xsl:strip-space elements="*"/&gt; &lt;xsl:template match="ParameterDefinition"&gt; &lt;xsl:variable name="vThis" select="."/&gt; &lt;xsl:variable name="vRes" select= "/*/*[name()=$vThis/ParameterSection] /*[name()=$vThis/Parameter] "/&gt; &lt;xsl:if test="not(position()=1)"&gt;,&lt;/xsl:if&gt; &lt;xsl:value-of select= "concat($vRes, substring('N/A', 1 div (string-length($vRes) = 0) ) )"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="text()"/&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p><strong>when applied on the (corrected) provided XML document</strong>:</p> <pre><code>&lt;Parameterdef&gt; &lt;Anode&gt; &lt;Anodeid&gt;1&lt;/Anodeid&gt; &lt;/Anode&gt; &lt;Bnode&gt; &lt;Bnodeid&gt;2&lt;/Bnodeid&gt; &lt;/Bnode&gt; &lt;ParameterVisualization&gt; &lt;ParameterDefinition&gt; &lt;ParameterSection&gt;Anode&lt;/ParameterSection&gt; &lt;Parameter&gt;Anodeid&lt;/Parameter&gt; &lt;/ParameterDefinition&gt; &lt;ParameterDefinition&gt; &lt;ParameterSection&gt;Bnode&lt;/ParameterSection&gt; &lt;Parameter&gt;Bnodeid&lt;/Parameter&gt; &lt;/ParameterDefinition&gt; &lt;ParameterDefinition&gt; &lt;ParameterSection&gt;Cnode&lt;/ParameterSection&gt; &lt;Parameter&gt;Cnodeid&lt;/Parameter&gt; &lt;/ParameterDefinition&gt; &lt;/ParameterVisualization&gt; &lt;/Parameterdef&gt; </code></pre> <p><strong>produces the wanted, correct result</strong>:</p> <pre><code>1,2,N/A </code></pre> <p><strong>Explanation</strong>:</p> <p>Use of the standard XPath function <strong><a href="http://www.w3.org/TR/xpath/#function-name" rel="nofollow"><code>name()</code></a></strong>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload