注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
Encode.pmのメンテナDan Kogai氏による、日本語数字とアラビア数字の相互変換を行うPerlモジュールです... Encode.pmのメンテナDan Kogai氏による、日本語数字とアラビア数字の相互変換を行うPerlモジュールです。 サンプル - #!/usr/bin/perl -w use strict; use utf8; binmode STDOUT, ":encoding(cp932)"; binmode STDERR, ":encoding(cp932)"; use Lingua::JA::Numbers ':all'; my $n = "9876543210"; print "$n -> ", num2ja($n), "\n"; $n = "1234567890"; print "$n -> ", num2ja($n, {style=>'daiji'}), "\n"; $n = "54321"; print "$n -> ", num2ja($n, {style=>'hiragana'}
2015/12/01 リンク