Natural sort order

Last updated

In computing, natural sort order (or natural sorting) is a way of ordering strings that treats embedded numbers as whole numerical values rather than sequences of characters.

Contents

While standard alphabetical order compares strings character-by-character (where "10" sorts before "2" because "1" is less than "2"), natural sort order orders them by magnitude of the number, placing "2" before "10".

Natural sort order is designed to address the shortcoming of standard lexicographical order, which often produces counter-intuitive results for humans when dealing with numbered lists, filenames, or version numbers. [1]

NaturalLexicographical
1.jpg

2.jpg

3.jpg

9.jpg

10.jpg

11.jpg

1.jpg

10.jpg

11.jpg

2.jpg

3.jpg

9.jpg

Problem with standard sorting

In standard alphabetical (lexicographical) sorting, strings are compared character by character from left to right. This causes numbers to be sorted based on the value of their first digit, rather than their whole numerical value.

For example, a computer using standard sorting will place the string "11" before "2". This occurs because the character "1" (the first digit of 11) has a lower code value than "2". While mathematically correct in terms of character codes, this ordering disrupts the logical sequence expected by users, particularly in file management and data lists.

Operation

Natural sorting algorithms generally operate by splitting strings into "chunks" of text and numbers.

Comparison of algorithms

Standard Sorting (Lexicographical)Natural Sorting
file1.txt

file10.txt

file11.txt

file12.txt

file2.txt

file20.txt

file3.txt

file1.txt

file2.txt

file3.txt

file10.txt

file11.txt

file12.txt

file20.txt

Handling edge cases

Different implementations of natural sort may handle edge cases differently:

History and implementations

Functionality to sort by natural sort order is now widely available in software libraries for many programming languages and operating systems.

The concept gained significant visibility in the Macintosh community. During the 1996 MacHack conference, the Natural Order Mac OS System Extension was conceived and implemented overnight as an entry for the Best Hack contest. [2] [3] Subsequently, Dave Koelle published the "Alphanum Algorithm" in 1997, [4] a popular reference implementation that influenced many later libraries. Martin Pool published "Natural Order String Comparison" in 2000. [5]

Modern implementations include:

File managers such as Windows Explorer (since Windows XP) and Midnight Commander utilize natural sorting by default to display file lists.

See also

References

  1. "Sorting for Humans : Natural Sort Order". blog.codinghorror.com. 12 December 2007.
  2. "Natural Order Numerical Sorting".
  3. "TidBITS: The Natural Order of Things". 3 February 1997.
  4. "Dave Koelle's Alphanum Algorithm".
  5. "Martin Pool's Natural Order String Comparison".
  6. "PHP: natsort - Manual". php.net.
  7. Morton, Seth M. (23 December 2021). "natsort: Simple yet flexible natural sorting in Python" via PyPI.
  8. "Sort::Naturally - metacpan.org". metacpan.org.
  9. "Version sort overview (GNU Coreutils 9.8)". www.gnu.org. Retrieved 2025-10-26.
  10. Pažourek, Tomáš (1 April 2022). "NaturalSort.Extension: Support for natural sorting in .NET/C#". github.com.