Page 1 of 1

How do I format xslt address for xml

Posted: Wed Jul 09, 2014 9:43 pm
by winkimjr2
I have a xslt document which pulls address from an xml document. I want the output to be in separate lines like this
<AddressFullText>
542 E Main Street SE
Apartment 204B
Montreal
Onatario, Canada 99999
</AddressFullText>


How do I accomplish this?

XSLT document

Code: Select all

<AddressFullText>
<xsl:value-of select="AddressLine1"/>
<xsl:value-of select="AddressLine2"/>
<xsl:value-of select="AddressLine3"/>
<xsl:value-of select="AddressLine4"/>
</AddressFullText>

Re: How do I format xslt address for xml

Posted: Thu Jul 17, 2014 5:01 pm
by adrian
Hi,

Before the first xsl:value-of and between the others insert a line terminator character:

Code: Select all

<xsl:text>&#xa;</xsl:text>
Regards,
Adrian