How do I format xslt address for xml

Questions about XML that are not covered by the other forums should go here.
winkimjr2
Posts: 62
Joined: Thu Jun 26, 2014 9:00 pm

How do I format xslt address for xml

Post 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>
adrian
Posts: 2855
Joined: Tue May 17, 2005 4:01 pm

Re: How do I format xslt address for xml

Post 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
Adrian Buza
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Post Reply