I have a workday integration where xml output is transformed to csv using an XSLT code. The xml causing the issue is as follows: 10337,ACMC,20240601,ACD,000M&E. The error message says that ‘The reference to entity “E” must end with the ‘;’ delimiter‘. Now what should I do to in the XSLT code so that it outputs ‘&’ as is?
I tried adding the following to the XSLT code but I still got the same error: <xsl:value-of select=”replace(., ‘&’, ‘&’)”/>