When I say “alphabetical order”, I mean “alphabetical order”
sebastiano.tronto.net
When I say “alphabetical order”, I mean “alphabetical order”
1–10 of 385 posts
Re: When I say “alphabetical order”, I mean “alphabetical order”
#2“There are additional complications in certain languages, where the comparison is context sensitive and depends on more than just single characters compared directly against one another,
[…]
Numbers. A customization may be desired to allow sorting numbers in numeric order. If strings including numbers are merely sorted alphabetically, the string “A-10” comes before the string “A-2”, which is often not desired. This behavior can be customized, but it is complicated by ambiguities in recognizing numbers within strings (because they may be formatted according to different language conventions). Once each number is recognized, it can be preprocessed to convert it into a format that allows for correct numeric sorting, such as a textual version of the IEEE numeric format.”*
I think those file browsers made the right choice, even given that they don’t (as in this example) always do the right thing.
Re: When I say “alphabetical order”, I mean “alphabetical order”
#3Re: When I say “alphabetical order”, I mean “alphabetical order”
#4I take it to mean they want the system to know file_9.txt is less then file_10.txt.
I never saw that happen in any OS, so I do not know what he is referring to. Maybe whatever that old system was, it sorted by create time as opposed to file name.
So, the author can try and create "aisort" that will look at all file names and add leading zeros to the file numeric portion, sort, then remove the zeros added. That will probably as slow as s***t and use gobs pf memory, depending on the number of files.
Re: When I say “alphabetical order”, I mean “alphabetical order”
#5If I understand the article, the author wants magic :) I take it to mean they want the system to know file_9.txt is less then file_10.txt. I never saw that happen in any OS, so I do not know what he is referring to. Maybe whatever that old system was, it sorted by create time as opposed to file name. So, the author can try and create "aisort" that will look at all file names and add leading zeros to the file numeric…
Re: When I say “alphabetical order”, I mean “alphabetical order”
#6If I understand the article, the author wants magic :) I take it to mean they want the system to know file_9.txt is less then file_10.txt. I never saw that happen in any OS, so I do not know what he is referring to. Maybe whatever that old system was, it sorted by create time as opposed to file name. So, the author can try and create "aisort" that will look at all file names and add leading zeros to the file numeric…
Re: When I say “alphabetical order”, I mean “alphabetical order”
#7If I understand the article, the author wants magic :) I take it to mean they want the system to know file_9.txt is less then file_10.txt. I never saw that happen in any OS, so I do not know what he is referring to. Maybe whatever that old system was, it sorted by create time as opposed to file name. So, the author can try and create "aisort" that will look at all file names and add leading zeros to the file numeric…
Re: When I say “alphabetical order”, I mean “alphabetical order”
#8Re: When I say “alphabetical order”, I mean “alphabetical order”
#9https://web.archive.org/web/20210207124255/http://www.daveko...
Re: When I say “alphabetical order”, I mean “alphabetical order”
#10https://www.unicode.org/reports/tr10/#Contextual_Sensitivity : “There are additional complications in certain languages, where the comparison is context sensitive and depends on more than just single characters compared directly against one another, […] Numbers. A customization may be desired to allow sorting numbers in numeric order. If strings including numbers are merely sorted alphabetically, the string “A-10” co…