P
Porthos
When I pull any given attribute out of my XML file via an XSL file, a
blank character (space) is appended after it. For example:
XSL File
----------------------
<xsl:value-of name="@path"><xsl:value-of name="@file">.doc
Result File
----------------------
C:\word_docs\ randomfilename .doc
I want to be able to pull multiple attributes and display them as one
line with no breaks/spaces; something more like this:
Result File
----------------------
C:\word_docs\randomfilename.doc
Now, I could use concat to pull them all together, or even a string
variable. But is there a way to override the behavior that adds the
space in the first place?
Thanks,
-jne
blank character (space) is appended after it. For example:
XSL File
----------------------
<xsl:value-of name="@path"><xsl:value-of name="@file">.doc
Result File
----------------------
C:\word_docs\ randomfilename .doc
I want to be able to pull multiple attributes and display them as one
line with no breaks/spaces; something more like this:
Result File
----------------------
C:\word_docs\randomfilename.doc
Now, I could use concat to pull them all together, or even a string
variable. But is there a way to override the behavior that adds the
space in the first place?
Thanks,
-jne