2
votes
3answers
126 views
LINQ and a natural sort order…
Hi,
What's the easiest way to get a LINQ query (from an SQL database - does that matter?) to order strings naturally?
For example, I'm currently getting these results:
Project …
7
votes
3answers
1k views
Natural Sort Order in C#
Anyone have a good resource or provide a sample of a natural order sort in C# for an FileInfo array? I am implementing the IComparer interface in my sorts.
0
votes
1answer
30 views
C#: Implementation of, or alternative to, StrCmpLogicalW in shlwapi.dll
For natural sorting in my application I currently P/Invoke a function called StrCmpLogicalW in shlwapi.dll. I was thinking about trying to run my application under Mono, but then o …
1
vote
4answers
723 views
Natural sort order string comparison in Java - is one built in?
I'd like some kind of string comparison function that preserves natural sort order1. Is there anything like this built into Java? I can't find anything in the String class, and t …
3
votes
4answers
213 views
How to sort and display mixed lists of alphas and numbers as the users expect?
Our application has a CustomerNumber field. We have hundreds of different people using the system (each has their own login and their own list of CustomerNumbers). An individual …
9
votes
13answers
1k views
Natural Sorting algorithm
How do you sort an array of strings naturally in different programming languages? Post your implementation and what language it is in in the answer.
0
votes
3answers
228 views
Natural sort in C - “array of strings, containing numbers and letters”
Looking for a proven to work algorithm for production.
Did see this example
but not finding much else on the web or in books.
i.e.
file_10.txt > file_2.txt
Thanks.
3
votes
13answers
2k views
Natural (human alpha-numeric) sort in Microsoft SQL 2005
We have a large database on which we have DB side pagination. This is quick, returning a page of 50 rows from millions of records in a small fraction of a second.
Users can define …
6
votes
2answers
294 views
How to implement a natural sort algorithm in c++?
I'm sorting strings that are comprised of text and numbers.
I want the sort to sort the number parts as numbers, not alphanumeric.
For example I want: abc1def, ..., abc9def, abc1 …
1
vote
2answers
259 views
Obtaining numeric/normalized representation of strings to aid in ‘natural sort ordering’ of titles in DB
I'd like to store an additional column in a table as a 'sort value', which is a numeric representation of the title column, such that the order of such values represents the string …
2
votes
6answers
1k views
Natural Sort in MySQL
Is there an elegant way to have performant, natural sorting in a MySQL database?
For example if I have this data set:
Final Fantasy
Final Fantasy 4
Final Fantasy 10
Final Fantas …
0
votes
1answer
405 views
IComparer problem + How do I sort an array of strings naturally (FILE_10 > FILE_2) in .NET?
SOLVED at the bottom of my post.
Or more specifically:
I have a bunch of FileInfo objects (I need the FileInfo objects to exclude hidden, system and reparse point files).
I need …
4
votes
2answers
566 views
How can I sort a hash’s keys naturally?
I have a Perl hash whose keys start with, or are, numbers.
If I use,
foreach my $key (sort keys %hash) {
print $hash{$key} . "\n";
}
the list might come out as,
0
0001
100 …
