I want to write an XSLT that will read a CSV file and transform the data into CDATA tag
sample input file
Col1,Col2,Col3
apple,mango,orange
required output
<![CDATA[apple|mango|orange]]>
I want to write an XSLT that will read a CSV file and transform the data into CDATA tag
sample input file
Col1,Col2,Col3
apple,mango,orange
required output
<![CDATA[apple|mango|orange]]>
Copyright © 2021 Jogjafile Inc.
Something like this: