2016-05-17 22 views

答えて

3

私のお気に入りはtwitter_cldr宝石を使用することです。

require "twitter_cldr" 
1.localize(:en).to_rbnf_s("SpelloutRules", "spellout-ordinal") # => "first" 
2.localize(:en).to_rbnf_s("SpelloutRules", "spellout-ordinal") # => "second" 
1

私はactive_supportの序数についてのみ認識しています。次の例では、第1、第2、第3を生成します。

1.ordinalize # returns "1st" 
2.ordinalize # returns "2nd" 
関連する問題