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: Filtering on element name e.g. Author*


> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
If you're using the 1998 Microsoft IE5 XSL ignore most of what you read on
this list including this reply.

>      <xsl:apply-templates select="*[nodename = 'p*']"/>

With an XSLT processor, try
<xsl:apply-templates select="*[starts-with(local-name(), 'p')]"/>

Mike Kay


 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]