GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Cz::Sort(3) User Contributed Perl Documentation Cz::Sort(3)

Cz::Sort - Czech sort

        use Cz::Sort;
        my $result = czcmp("_x j&á", "_&p");
        my @sorted = czsort qw(plachta plaòka Plánièka plánièka plánì);
        print "@sorted\n";

Implements czech sorting conventions, indepentent on current locales in effect, which are often bad. Does the four-pass sort. The idea and the base of the conversion table comes from Petr Olsak's program csr and the code is as compliant with CSN 97 6030 as possible.

The basic function provided by this module, is czcmp. If compares two scalars and returns the (-1, 0, 1) result. The function can be called directly, like

        my $result = czcmp("_x j&á", "_&p");

But for convenience and also because of compatibility with older versions, there is a function czsort. It works on list of strings and returns that list, hmm, sorted. The function is defined simply like

        sub czsort
                { sort { czcmp($a, $b); } @_; }

standard use of user's function in sort. Hashes would be simply sorted

        @sorted = sort { czcmp($hash{$a}, $hash{$b}) }
                                                keys %hash;

Both czcmp and czsort are exported into caller's namespace by default, as well as cscmp and cssort that are just aliases.

This module comes with encoding table prepared for ISO-8859-2 (Latin-2) encoding. If your data come in different one, you might want to check the module Cstocs which can be used for reencoding of the list's data prior to calling czsort, or reencode this module to fit your needs.

0.68

perl(1), Cz::Cstocs(3).

(c) 1997--2000 Jan Pazdziora

Hey! The above document had some coding errors, which are explained below:
Around line 262:
Non-ASCII character seen before =encoding in 'j&á",'. Assuming CP1252
2019-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.