R
rosemm
Hi,
I am having a problem with a conversion program I am writing to change
XML to a CSV. The biggest problem is I can't figure out how to get all
the text for one record on a single line without having one really
really long line of code like this:
<xsl:value-of select="NAME/LAST/@VALUE"/>,<xsl:value-of
select="NAME/FIRST/@VALUE"/>,<xsl:value-of
select="NAME/MIDDLE//@VALUE"/>,<xsl:value-of
select="CITY_OF_BIRTH/@VALUE"/>,<xsl:value-of
select="BIRTH_DATE/@VALUE"/><xsl:text>
</xsl:text>
Yes that is just one line of code! The problem is that this is like
1/10 of the data I have for every record plus I need to do
manipulations on the data. Does anyone have any idea how I can have
each separate piece of data on a different line and end up with all of
one record on the same line?
I am having a problem with a conversion program I am writing to change
XML to a CSV. The biggest problem is I can't figure out how to get all
the text for one record on a single line without having one really
really long line of code like this:
<xsl:value-of select="NAME/LAST/@VALUE"/>,<xsl:value-of
select="NAME/FIRST/@VALUE"/>,<xsl:value-of
select="NAME/MIDDLE//@VALUE"/>,<xsl:value-of
select="CITY_OF_BIRTH/@VALUE"/>,<xsl:value-of
select="BIRTH_DATE/@VALUE"/><xsl:text>
</xsl:text>
Yes that is just one line of code! The problem is that this is like
1/10 of the data I have for every record plus I need to do
manipulations on the data. Does anyone have any idea how I can have
each separate piece of data on a different line and end up with all of
one record on the same line?