Rand Stats

CLDR::List

github:patch

Perl CLDR

NAME

CLDR::List - Localized list formatters using the Unicode CLDR

SYNOPSIS

use CLDR::List;

my $list  = CLDR::List.new(locale => 'en');
my @fruit = <apples oranges bananas>;

say $list.format(@fruit);      # apples, oranges, and bananas

$list.locale = 'en-GB';        # British English
say $list.format(@fruit);      # apples, oranges and bananas

$list.locale = 'zh-Hant';      # Traditional Chinese
say $list.format('1'..'4');  # 1、2、3和4

DESCRIPTION

Localized list formatters using the Unicode CLDR.

Attributes

Methods

SEE ALSO

AUTHOR

Nova Patch patch@cpan.org

COPYRIGHT AND LICENSE

© 2013–2015 Nova Patch

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.