xsl-list
[Top] [All Lists]

Re: how to replace <?Pub _hardspace?>

2003-08-08 12:18:16
At 2003-08-08 18:00 +0000, abbouh wrote:
<para compact="yes">AAAA<?Pub _hardspace?>BBBB<?Pub _hardspace?><?Pub
_hardspace?><?Pub _hardspace?><?Pub _hardspace?>CCC<?Pub _hardspace?><?Pub
_hardspace?>DDD<?Pub _hardspace?>EEE</para>

and i want to get

AAAA  BBB    CCC  DDD EEE

Both David and I gave you the answer.

i use in my xsl:

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

This is not in the answer that either David or I gave you.

David's suggestion of &#160; may still be applicable in addition to what is below, which is a copy of what both of us said to you independently.

I hope this helps this time around.

............. Ken

T:\ftemp>type abbouh.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<test>
<para compact="yes">AAAA<?Pub _hardspace?>BBBB<?Pub _hardspace?><?Pub
_hardspace?><?Pub _hardspace?><?Pub _hardspace?>CCC<?Pub _hardspace?><?Pub
_hardspace?>DDD<?Pub _hardspace?>EEE</para>
</test>
T:\ftemp>type abbouh.xsl
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                version="1.0">

<xsl:output method="text"/>

<xsl:template match="processing-instruction('Pub')[.='_hardspace']">
  <xsl:text> </xsl:text>
</xsl:template>

</xsl:stylesheet>

T:\ftemp>saxon abbouh.xml abbouh.xsl

AAAA BBBB    CCC  DDD EEE

T:\ftemp>

--
Upcoming hands-on courses: in-house corporate training available;
North America public:                     XSLT/XPath Aug 12, 2003

G. Ken Holman                mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.         http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0   +1(613)489-0999 (F:-0995)
ISBN 0-13-065196-6                      Definitive XSLT and XPath
ISBN 0-13-140374-5                              Definitive XSL-FO
ISBN 1-894049-08-X  Practical Transformation Using XSLT and XPath
ISBN 1-894049-11-X              Practical Formatting Using XSL-FO
Member of the XML Guild of Practitioners:    http://XMLGuild.info
Male Breast Cancer Awareness http://www.CraneSoftwrights.com/s/bc


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



<Prev in Thread] Current Thread [Next in Thread>