Hi Steinar, XSLT/XPath questions (as opposed to comments on the XSLT/XPath specifications) are best addressed to xsl-list@lists.mulberrytech.com. > Is it possible to replace "@*" with an expression that would select > all attributes except the attribute named "background"[3][4]? In XPath 1.0, use: @*[name() != 'background'] (select every attribute whose name is not 'background'). In XPath 2.0, use: @* except @background (select every attribute except the background attribute). Cheers, Jeni --- Jeni Tennison http://www.jenitennison.com/Received on Saturday, 22 November 2003 12:37:55 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Wednesday, 3 October 2007 16:05:55 GMT