Re: [xsl] Why processor or stylesheets puts strange output

Subject: Re: [xsl] Why processor or stylesheets puts strange output
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Sun, 25 Aug 2002 23:24:51 +0200
Wendell Piez wrote:
> At 12:19 PM 8/23/2002, Mike wrote:
>
>> TSchutzerWeissmann@xxxxxxxxxxxxxxxx wrote:
>> > <xsl:template match="text()[
>> >    string-length(translate(.,'&#x9;&#xA;&#xD;&#x20;',''))=0]"/>
>>
>> This can be shortened to
>>
>>   <xsl:template match="text()[translate(.,'&#x9;&#xA; ','')]"/>
>
>
> And what of text()[normalize-space()] ?

Maybe I'm to pedantic, but only *almost* ;-)

Your expression is the same as Mike's, but his one not the same as Tom's expression.

<xsl:template match="text()[
     string-length(translate(.,'&#x9;&#xA;&#xD;&#x20;',''))=0]"/>


<xsl:template match="text()[not(translate(.,'&#x9;&#xA; ',''))]"/>


----------------------------^^^

<xsl:template match="text()[not(normalize-space())]"/>

----------------------------^^^

Regards,

Joerg



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


Current Thread