I want to pass the value of employee_name
that I get from XML to a user-defined function in XSL. Please see the code below:
<xsl:for-each select="employees/employee">
<xsl:value-of select="employee_name"/>
<xsl:value-of select="
my:compareCI(
'--how to pass employee_name Value--',
'--how to pass employee_name Value--'
)
" />
</xsl:for-each>
Please any help me as I am new to XSL.