Don Smith wrote:
I'm sorting a series of chapters based upon the chapter number. The numbering
system is decimal:
3.9.1
3.9.2
3.9.3
and so on.
I'm currently casting the sort key value to xsd:decimal
<xsl:sort select="xsd:decimal(@number)" />
but it's not producing the desired sort order. What am I missing?
I’m curious: what number did you expect to get from the string “3.9.11”?
You will need to tokenize the strings and sort by their components.
~Chris
--
Chris Maden, text nerd <URL: http://crism.maden.org/ >
“All I ask of living is to have no chains on me,
And all I ask of dying is to go naturally.” — Laura Nyro
GnuPG Fingerprint: C6E4 E2A9 C9F8 71AC 9724 CAA3 19F8 6677 0077 C319
--~------------------------------------------------------------------
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>
--~--