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]
Other format: [Raw text]

Re: Identifying two tags that share some attribute names andvalues




Zack Brown schrieb:
> On Mon, May 06, 2002 at 05:04:46PM +0200, Joerg Heinicke wrote:
> 
>>normalize-space() should handle this.
> 
> 
> Hmm, I tinkered with it a little, but I'm not sure exactly where to use
> it... the current recipe I'm using on my actual data is:
> 
> <xsl:if test="not($section/@*[name() = name(current())] = .)">no</xsl:if>

<xsl:if test="not(normalize-space($section/@*[name() = name(current())]) 
= normalize-space())">no</xsl:if>

Joerg


 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]