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 -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
