I have sequence/array of string in xsl stlesheet.
e.g varList when I print the value of above variable as following
<xsl:value-of select="$varList"/>
It prints as follows which is
varList="hw.co.gdh gd.kj.xhd bh.ko.sag hf.sj.kjh"
Now I have to get each string separatly from the above varibale.
i.e "hw.co.gdh" , "gd.kj.xhd" separeted.
How I can do it? is there any option of applying <xsl:for-each>
loop or somthing else?
I m using version="1.0" of xsl.