xsl-list
[Top] [All Lists]

Re: [xsl] ATTRIBUTE ORDER

2006-05-26 16:05:34
Rick,

At 06:52 PM 5/26/2006, you wrote:
XSLT 2.0 with Saxon 8

When I am parsing a node with attributes, can I count on the attribute order
staying the same as in the source document?

Nope. Attribute order is undefined in XML, so parsers are not obliged to maintain it, and consequently nothing else is either.

You can, however, always sort your attributes: if they're always in alphabetical order they'll always be in the same order.

<xsl:for-each select="@*">
  <xsl:sort select="name()"/>
  ...
</xsl:for-each>

Cheers,
Wendell



======================================================================
Wendell Piez                            
mailto:wapiez(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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