Tokenize a CSV and do a for-each in XSLT 1.0

There are cases where you’ll have a csv and need to do a for-each on each of the tokens.
For ex, a CSV stored in a DVM has to be iterated and needs to be assigned to a target for each of the token

Here is how you can tokenize

<xsl:stylesheet version="1.0"
xmlns:xsl=”http://www.w3.org/1999/XSL/Transform”&gt;

And the result is

  a
  b
  c

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a comment