Re: [xsl] Looping over a CSV in XSL
by Joerg Pietschmann other posts by this author
Nov 20 2001 9:37AM messages near this date
Re: [xsl] msxml. how to distribute it?
|
[xsl] apply-templates - wrap
"Khan, Amir" <amkhan@[...].com> wrote:
> I have a problem such that I call a transform engine and for the XSL I set
> one of the parameters to be a CSV.
If you want only test whether a string in a token in the CSV you can
skip all the fancy parsing an stick to using contains(), you'll only
have to include the delimiters to avoid spurious substring matches:
<xsl:variable name="normalized-csv"
select="concat(',',translate($param,' ',''),',')"/>
<xsl:if test="contains($normalized-csv,concat(',',$value,','))">
...
You'll have to prepend/append a comma so that the test will also
find the first and the last value in the CSV.
HTH
J.Pietschmann
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|