Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Hungarian Alphabet Sort (was Re: Collation sequence -proper and effi

From: carl::cybercraft::co::nz at: 14-May-2002 9:21

On 14-May-02, Geza Lakner MD wrote:
> Maybe I missed this in the English class :-) but does NOT sort > English this way, too? What is the proper sorting order for mixed > capitalized English words?
Something I'd not thought about. This is what REBOL does...
>> sort "AabB"
== "AabB"
>> sort/case "AabB"
== "ABab" I expected sort/case to return "aAbB"... Would a sort/pattern be of use? ie... sort/pattern "AabB" "aAbBcC" ; == "aAbB" -- Carl Read