vote up 0 vote down star

Hos do I pass array of Integers as a params to XSLT?.

flag

71% accept rate
It would be better if you could add more details to your question... – Alceu Costa Jul 7 at 21:20
That's right. What do you mean by 'array of integers'? Would set of nodes whose values consist of digits only do the job? – GrzegorzOledzki Jul 7 at 21:49
I am trying to filter/Copy the elements in a source XML with the IDs(Integers) as the ID node . – Greens Jul 8 at 13:52

2 Answers

vote up 0 vote down check

You can pass it in an xml format. That would make processing in the xslt easier too.

<array>
 <int>23</int>
 <int>45</int>
</array>

You can then process it in your xslt as:

<xsl:param name="intArray" />
...
...
<xsl:template match="/">
 ...
 <xsl:for-each select="$intArray/int">
  <!-- Process int array -->
  ...
  ...
 </xsl:for-each>
</xsl:template>
link|flag
vote up 0 vote down

Convert it into comma-separated string

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.