RE: [xsl] Strip CRLF/newline only

Subject: RE: [xsl] Strip CRLF/newline only
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Wed, 24 Oct 2001 17:38:38 -0400
Peter,

You can also throw away just the line feeds by massaging your template matching text nodes:

<xsl:template match="text()">
  <xsl:value-of select="translate(., '&#10;', '')"/>
</xsl:template>

and to limit the behavior only to certain elements, matching on "name/text()", etc.

But I don't think that's as good an option as the xsl:strip-space, since space characters (#32) may still be floating around.

Cheers,
Wendell

At 04:32 PM 10/24/01, you wrote:
Well, see my other replies about only wanting this in a particular template,
but knowing that only LF's are passed means I might be able to just watch
for them in the extension function...


======================================================================
Wendell Piez                            mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


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



Current Thread