Skip to main content

Posts

Showing posts with the label XSLT

XSLT Inserting a new line character in output csv

Hi, Recently i had to insert a newline character in an output csv file generated by AIF with XSLT Transformation. I wanted to insert a new line character in the output which is simple but took me quite some time to arrive at being relatively new to XSLT Use the following line <xsl:value-of select="'&#xA;'"/> to achieve the same Regards Hitesh