|
next
|
 Subject: Formatting String Author: Tony Lavinio Date: 21 Jan 2007 05:57 PM
|
Could you post a sample line, the way it would actually look?
If you have a fixed position for each field, you could output them
like this:
(Assuming street and city were 20 characters each, then followed by
a two-character state and a 5-digit zip)
<xsl:value-of select="normalize-space(substring($row, 1, 20))"/>
<xsl:text>&#10;</xsl:text>
<xsl:value-of select="normalize-space(substring($row, 21, 20))"/>
<xsl:text>&#10;</xsl:text>
<xsl:value-of select="substring($row, 41, 2)"/>
<xsl:text>&#10;</xsl:text>
<xsl:value-of select="substring($row, 43, 5)"/>
|
|
|
|