I am suing tokenize with xslt 2, which is working great with MHKAY help.
I am coming SAP XI (Integration System), which has 1.0. I tried with EXSLT, it's not working either.
Here is the requirement
I need loop through each token with in a tokenizer. Is there any alternate way just to stick with XSLT 1.0
HTML Code:
<xsl:for-each select="tokenize($this/Audit_Lead_Auditor,'\|')">
<xsl:variable name="f4v" select="."/>
<xsl:for-each select="tokenize($this/Audit_Sub_System,'\|')">
<xsl:variable name="f5v" select="."/>
<xsl:for-each select="tokenize($this/Audit_Sub_Type,'\|')">
<xsl:variable name="f6v" select="."/>
Guru's please help. Appreciated in advance