I am not a web developer but I was forced to do XSLT.
I have a variable (var1) being passed to an XSLT template which has these values 1,2,3,4. I need to display this as
1
2
3
4
I'm using the code below to display my values.
<\xsl:value-of select="var1"\>
How can it dynamically replace the commas with line feeds? I've tried replacing the commas with & #10; (using a program) but it did not work.