This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: how to omit new lines


Dmitri Ilyin  wrote:

>I have simple xml as follows:
>
><text>
>   text
></text>
>
>I got in output:
>
>     blah:
>        text
>
>
>How can i get it to put it all in one line:
>
>blah: text
>

The normalize-space() function will get rid of the extra white space at the
beginning and end of your text element:

<xsl:template match="text">
	blah:<xsl:value-of select="normalize-space(.)"/>
</xsl:template>

Bob DuCharme            www.snee.com/bob             <bob@  
snee.com>      see http://www.snee.com/bob/xsltquickly for
info on new book "XSLT Quickly" from Manning Publications.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]