Tagged Questions
The natural-sort tag has no wiki summary.
21
votes
5answers
5k 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.
16
votes
16answers
9k 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 their own sort, ...
13
votes
5answers
8k 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 the Comparator class ...
12
votes
15answers
3k 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.
8
votes
6answers
633 views
Sorting List<String> in C#
How to sort a List based on the item's integer value
The list is like
"1"
"5"
"3"
"6"
"11"
"9"
"NUM1"
"NUM0"
The result should be like
"1"
"3"
"5"
"6"
"9"
"11"
"NUM0"
"NUM1"
is there any idea ...
8
votes
11answers
8k 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 Fantasy 12
Final Fantasy ...
7
votes
3answers
1k 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, abc10def
instead of: ...
6
votes
2answers
2k 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
1000
203
23
Instead ...
5
votes
3answers
152 views
UCA + Natural Sorting
I recently learnt that PHP already supports the Unicode Collation Algorithm via the intl extension:
$array = array
(
'al', 'be',
'Alpha', 'Beta',
'Álpha', 'Àlpha', 'Älpha',
'かたかな',
...
5
votes
2answers
197 views
Writing a better natural sort (than mine)
I added an answer to this question here: Sorting List<String> in C# which calls for a natural sort order, one that handles embedded numbers.
My implementation, however, is naive, and in lieu of ...
4
votes
5answers
206 views
Java String Number Comparator
I have a method returning a list of String that need to be sorted. However, I'm running into the old String number sorting issue and was wondering if any one could assist with a Comparator ...
4
votes
3answers
160 views
How can I sort a list of strings by numbers in them?
An easy one no doubt for you...
I have a list of filenames which are like so;
fw_d.log.1.gz
through
fw_d.log.300.gz
When i use this below code block, it almost sorts it the way i want, but ...
4
votes
3answers
1k views
LINQ and a natural sort order
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 1
Project 10
Project 2
...
4
votes
2answers
121 views
how to get the max data using natural sort?
10.12.1
10.12.10
10.12.11
10.12.12
10.12.13
10.12.14
10.12.15
10.12.16
10.12.17
10.12.18
10.12.19
10.12.2
10.12.3
10.12.4
10.12.5
10.12.6
10.12.7
10.12.8
10.12.9
This is a varchar ...
3
votes
4answers
127 views
How to compare version string (“x.y.z”) in MySQL?
I have firmware version strings into my table (like "4.2.2" or "4.2.16")
How can I compare, select or sort them ?
I cannot use standard strings comparison : "4.2.2" is a seen by SQL greater than ...
3
votes
5answers
144 views
Where is $_ being modified in this perl code?
The following perl code generates a warning in PerlCritic (by Activestate):
sub natural_sort {
my @sorted;
@sorted = grep {s/(^|\D)0+(\d)/$1$2/g,1} sort grep {s/(\d+)/sprintf"%06.6d",$1/ge,1} ...
3
votes
3answers
468 views
Natural sort for SQL Server?
I have a column that is typically only numbers (sometimes it's letters, but that's not important).
How can I make it natural sort?
Currently sorts like this: {1,10,11,12,2,3,4,5,6,7,8,9}
I want ...
3
votes
3answers
127 views
IList with an implicit sort order
I'd like to create an IList<Child> that maintains its Child objects in a default/implicit sort order at all times (i.e. regardless of additions/removals to the underlying list).
What I'm ...
3
votes
4answers
562 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 user might have at ...
2
votes
3answers
97 views
array_multisort with natural sort
Is it possible to sort multiple dimensional array by multiple columns using natural sort in PHP? Here is an example. Suppose I have a 2D array of data, e.g.,
$array[1]['Name'] = 'John';
...
2
votes
3answers
150 views
Naturally sort a list of alpha-numeric tuples by the tuple's first element in Python
A previous stackoverflow question explains how to sort a list of strings alpha-numerically. I would like to sort a list of tuples alphanumerically by the tuple's first element.
Example 1:
...
2
votes
2answers
147 views
mysql natural sorting
I have table like server(id,name,ip). When I'm trying to sort results by name, I get:
srv1,srv10,srv11,srv2,srv6
but I need the results like srv1,srv2,srv6,srv10,srv11
One idea I know is
ORDER BY ...
2
votes
3answers
465 views
c# add a list of items to combobox ordered by string not natural
i use this code to add a numbers to combobox
for (int i = 15; i < 250; i++)
{
cbSumFrom.Items.Add(i);
}
the problem is that i get something like
100
101
......
but i want like
15
...
2
votes
1answer
306 views
Natural order sort for Emacs Lisp
Has anyone implemented a natural order sort in Emacs Lisp? I know it's not hard to write, but it's easier to borrow someone else's work.
(Yeah, I can't believe I just searched for an Emacs function ...
1
vote
2answers
35 views
MySQL order STRING as INT and inserting
I have a dataset like so:
print_id
--------
2b
1
2
4b
4a
3
6
2a
5
The print ID can be in the format of: /([0-9]+)([a-e]{1})?/
What I want to is order them first by number, and by letter if there ...
1
vote
5answers
105 views
how to sort strings in javascript numerically
I would like to sort an array of strings (in javascript) such that groups of digits within the strings are compared as integers not strings. I am not worried about signed or floating point numbers.
...
1
vote
4answers
96 views
How should natural sort work if there're several number sequences identifiable in the string set?
So-called natural sort is meant to address the following problem: when users expect
file1.txt
file2.txt
file3.txt
file10.txt
file11.txt
"usual" sort instead produces:
file1.txt
file10.txt
...
1
vote
1answer
145 views
MySql natural sorting with offset from a certain value
I have the data:
CREATE TABLE IF NOT EXISTS `sort` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`value` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `sort` (`id`, `value`) VALUES
(1, ...
1
vote
2answers
106 views
How do you sort fields which have numbers in a mathematical order
The following users are present in our database..
create table users (id, name);
name [u1, u2, u3, u4, u5, u6, u7, u8, u9, u10, u11, ...]
If the above field is sorted in an ascending fashion, the ...
1
vote
2answers
189 views
Ordering a varchar column in MySQL in an Excel-like manner
I have a varchar column with mixed data- strings, integers, decimals, blank strings, and null values. I'd like to sort the column the same way that Excel would, first sorting numbers and then sorting ...
1
vote
2answers
210 views
Natural Sort in NHibernate
I've got a hibernate query that returns a list of objects and I want to order by a title. This is a user maintained field and some of our customers like prefixing their titles with numbers, this isn't ...
1
vote
2answers
851 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 of course I can't ...
1
vote
2answers
653 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's natural ...
0
votes
2answers
38 views
MySQL ORDER_BY partial Integer in String
I have a series of varchar fields in a MySQL database that are "numbered":
+-----------+
| name |
+-----------+
| thing 1 |
| thing 2 |
| thing 3 |
| ... |
| thing 10 |
| thing 11 ...
0
votes
1answer
29 views
Natural ordering files in directory into a cell array using Octave
I have files being generated by another program/user that have names such as "jh-1.txt, jh-2.txt, ..., jh-100.txt, ..., jh-1024.txt". I'm extracting a column from these files, manipulating the data, ...
0
votes
2answers
94 views
Sort and list the files from a directory in numeric order
This is my folder structure.
/home/files/encounters 9-22-11-0.jpg .. /home/files/encounters 9-22-11-[n].jpg
puts Dir.glob("/home/files/*.jpg")[0]
When i execute the above code, it displayed the ...
0
votes
1answer
206 views
Sorting nvarchar column containing alphanumeric values
One of my columns in a SQL Server 2005 table contains alphanumeric values and I want to sort the rows as per the alphanumeric sorting. HOUSE_NO is a NVARCHAR column and it contains values like this -
...
0
votes
1answer
116 views
Natural Sort on data mixing text and numbers (and then more text *sometimes*)
I am working on a site for a guy who runs livestock auctions. He will enter the animals as Lot 1, Lot 2, Lot 3, Lot 3a, Lot 4, ... Lot 100, ... Lot N. Since this is a mix of numbers and text, I was ...
0
votes
2answers
139 views
In Ruby on Rails, after “gem install <gem_name>”, how to make it extend Array, or use its class method?
Summary: after I gem install <gem_name>, how do I make it extend Array which the gem can do?
Details:
I see a gem for "natural language sort", which is
http://rubygems.org/gems/naturalsort
...
0
votes
6answers
358 views
python sort strings with digits at the end
what is the easiest way to sort a list of strings with digits at the end where some have 3 digits and some have 4:
>>> list = ['asdf123', 'asdf1234', 'asdf111', 'asdf124']
>>> ...
0
votes
1answer
373 views
How to achieve Natural(human alpha-numeric ) Sorting, for silverlight datagrids using ViewModel?
In silverlight project that uses datagrid, I am using some column that defines "Label number" which is a Varchar.
I want to sort this column as described in natural sort order as described in
...
0
votes
3answers
83 views
How make for order by name in MYSQL as with order name in Window
table
Picture with rows have name
1.jpg,2.jpg,3.jpg,4.jpg,5.jpg,6.jpg,7.jpg,8.jpg,9.jpg,10.jpg,11.jpg
select * from Picture order by name
mysql order : 1.jpg,10.jpg,11.jpg,2.jpg,3.jpg,......
...
0
votes
2answers
358 views
sql sort numeric then alphabetically
in this example :
10-20
20-40
50-60
v
k
r
a
12 month
1 month
how can i sort it in this order ?:
10-20
20-40
50-60
a
k
r
v
1 month
12 month
i use abs(value) but in the alphabetical case ...
0
votes
8answers
230 views
Numeric order when returning results from MySQL
I have the following types of titles in a table in my db:
Topic 1 blah blah
Topic 2 blah blah
Topic 3 blah blah
...
Topic 10 blah blah
Topic 11 blah blah
etc...
The select query will always ...
0
votes
2answers
1k views
natural sort of text and numbers, JavaScript
I'm looking for the easiest way to sort an array that consists of numbers and text, and a combination of these.
E.g.
'123asd'
'19asd'
'12345asd'
'asd123'
'asd12'
turns into
'19asd'
'123asd'
...
0
votes
1answer
449 views
php natural order sorting of mysql select rows
I'm running a select that returns alphanumeric results, e.g:
ABC-1
ABC-2
ABC-10
SAM-1
SAM-2
SAM-10
SAM-20
I've tried using:
ORDER BY CAST(mid(field_name, 6, LENGTH(class) -5) AS unsigned)
and
...
0
votes
3answers
973 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.
0
votes
1answer
894 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 to sort FileInfo[] ...
-1
votes
2answers
124 views
how to sort varchar numeric columns by DESC or ASC?
I write ...
ORDER BY column ASC
but my column is VARCHAR and it sorts wrong like 1, 10, 2, instead of 1, 2, 10.
How can I do it to sort like 1, 2, 10?