|
Acme::Sort::NoCase - Case-insensitive sort |
Acme::Sort::NoCase - Case-insensitive sort
use Acme::Sort::NoCase qw(sorti);
@sorted = sorti qw(ABC def JKL ghi PQRS mno);
$, = "\n"; print @sorted;
__OUTPUT__
ABC def ghi JKL mno PQRS
Acme::Sort::NoCase exports the sorti() function upon request
which will case-insensitively sort alphanumerical items.
sorti() is exportable.
|
Acme::Sort::NoCase - Case-insensitive sort |