How to Install and Uninstall perl-Sort-Naturally Package on openSuSE Tumbleweed

Last updated: November 22,2024

1. Install "perl-Sort-Naturally" package

In this section, we are going to explain the necessary steps to install perl-Sort-Naturally on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Sort-Naturally

2. Uninstall "perl-Sort-Naturally" package

Please follow the steps below to uninstall perl-Sort-Naturally on openSuSE Tumbleweed:

$ sudo zypper remove perl-Sort-Naturally

3. Information about the perl-Sort-Naturally package on openSuSE Tumbleweed

Information for package perl-Sort-Naturally:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Sort-Naturally
Version : 1.03-5.31
Arch : noarch
Vendor : openSUSE
Installed Size : 30.5 KiB
Installed : No
Status : not installed
Source package : perl-Sort-Naturally-1.03-5.31.src
Upstream URL : http://search.cpan.org/dist/Sort-Naturally/
Summary : sort lexically, but sort numeral parts numerically
Description :
This module exports two functions, 'nsort' and 'ncmp'; they are used in
implementing my idea of a "natural sorting" algorithm. Under natural
sorting, numeric substrings are compared numerically, and other
word-characters are compared lexically.
This is the way I define natural sorting:
* *
Non-numeric word-character substrings are sorted lexically,
case-insensitively: "Foo" comes between "fish" and "fowl".
* *
Numeric substrings are sorted numerically: "100" comes after "20", not
before.
* *
\W substrings (neither words-characters nor digits) are _ignored_.
* *
Our use of \w, \d, \D, and \W is locale-sensitive: Sort::Naturally uses a
'use locale' statement.
* *
When comparing two strings, where a numeric substring in one place is
_not_ up against a numeric substring in another, the non-numeric always
comes first. This is fudged by reading pretending that the lack of a
number substring has the value -1, like so:
foo => "foo", -1
foobar => "foo", -1, "bar"
foo13 => "foo", 13,
foo13xyz => "foo", 13, "xyz"
That's so that "foo" will come before "foo13", which will come before
"foobar".
* *
The start of a string is exceptional: leading non-\W (non-word,
non-digit) components are are ignored, and numbers come _before_ letters.
* *
I define "numeric substring" just as sequences matching m/\d+/ --
scientific notation, commas, decimals, etc., are not seen. If your data
has thousands separators in numbers ("20,000 Leagues Under The Sea" or
"20.000 lieues sous les mers"), consider stripping them before feeding
them to 'nsort' or 'ncmp'.