numerals: Convert numbers to number words
Convert numbers to number words in a number of languages. Each
language has its own module. The module name is based on one of the
ISO 639 Alpha codes. Each module contains one or more cardinal
and
ordinal
functions and a struct
function. The cardinal
functions directly convert cardinal numbers to a string-like
representation of their spoken form. The ordinal
functions do the
same but for ordinal numbers. The struct
functions convert numbers
to a polymorphic representation of their grammatical structure.
The use of this package is best understood with some examples. First some English number names, both British and US variants:
>>>
import qualified Text.Numeral.Language.EN as EN
>>>
EN.uk_cardinal defaultInflection 123 :: Maybe Text
Just "one hundred and twenty-three">>>
EN.us_cardinal defaultInflection (10^50 + 42) :: Maybe Text
Just "one hundred quindecillion forty-two"
French, which contains some traces of a base 20 system:
>>>
import qualified Text.Numeral.Language.FR as FR
>>>
FR.cardinal defaultInflection (-99) :: Maybe Text
Just "moins quatre-vingt-dix-neuf"
Conversions can fail. Alamblak, a language spoken by a few people in Papua New Guinea, has no representation for negative numbers:
>>>
import qualified Text.Numeral.Language.AMP as AMP
>>>
AMP.cardinal defaultInflection (-3) :: Maybe Text
Nothing
Some languages have multiple scripts and methods for writing number names. Take Chinese for example, which can be written using Han characters or transcribed to the Latin script using Pinyin.
Traditional Chinese characters:
>>>
import qualified Text.Numeral.Language.ZH as ZH
>>>
ZH.trad_cardinal defaultInflection 123456 :: Maybe Text
Just "十二萬三千四百五十六"
Simplified characters for use in financial contexts:
>>>
ZH.finance_simpl_cardinal defaultInflection 123456 :: Maybe Text
Just "拾贰万参仟肆伯伍拾陆"
Transcribed using Pinyin:
>>>
ZH.pinyin_cardinal defaultInflection 123456 :: Maybe Text
Just "shíèrwàn sānqiān sìbǎi wǔshí liù"
Using the struct
functions you can see the grammatical structure
of number names. Because the results of these functions are
polymorphic you need to specify a specific type.
>>>
import qualified Text.Numeral.Language.NL as NL
>>>
NL.struct 123 :: Integer
123>>>
import Text.Numeral
>>>
NL.struct 123 :: Exp
Add (Lit 100) (Add (Lit 3) (Mul (Lit 2) (Lit 10)))
Compare with:
>>>
NL.cardinal defaultInflection 123 :: Maybe Text
Just "honderddrieëntwintig"
100 (honderd) + (3 (drie) + (ën) 2 (twin) * 10 (tig))
[Skip to Readme]
Modules
[Index]
- Text
- Text.Numeral
- Text.Numeral.BigNum
- Text.Numeral.Entry
- Text.Numeral.Exp
- Text.Numeral.Grammar
- Language
- Text.Numeral.Language.AF
- Text.Numeral.Language.AMP
- Text.Numeral.Language.BG
- Text.Numeral.Language.CHN
- Text.Numeral.Language.CHR
- Text.Numeral.Language.CLM
- Text.Numeral.Language.CS
- Text.Numeral.Language.DE
- Text.Numeral.Language.EN
- Text.Numeral.Language.EO
- Text.Numeral.Language.ES
- Text.Numeral.Language.Entries
- Text.Numeral.Language.FI
- Text.Numeral.Language.FR
- Text.Numeral.Language.FUR
- Text.Numeral.Language.GSW
- Text.Numeral.Language.GV
- Text.Numeral.Language.HE
- Text.Numeral.Language.HOP
- Text.Numeral.Language.IT
- Text.Numeral.Language.JA
- Text.Numeral.Language.LA
- Text.Numeral.Language.LLD
- Text.Numeral.Language.MG
- Text.Numeral.Language.NL
- Text.Numeral.Language.NO
- Text.Numeral.Language.NQM
- Text.Numeral.Language.OJ
- Text.Numeral.Language.PDC
- Text.Numeral.Language.PL
- Text.Numeral.Language.PT
- Text.Numeral.Language.RU
- Text.Numeral.Language.SCO
- Text.Numeral.Language.SV
- Text.Numeral.Language.TR
- Text.Numeral.Language.WO
- Text.Numeral.Language.YOR
- Text.Numeral.Language.ZH
- Text.Numeral.Misc
- Text.Numeral.Render
- Text.Numeral.Rules
- Text.Numeral
Downloads
- numerals-0.4.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
Versions [RSS] | 0.1, 0.3, 0.3.0.1, 0.4, 0.4.1 |
---|---|
Dependencies | base (>=3.0.3.1 && <4.7), base-unicode-symbols (>=0.2.2 && <0.3), containers (>=0.4 && <0.6), containers-unicode-symbols (>=0.3 && <0.4), fingertree (>=0.0.1 && <0.2), integer-gmp (>=0.3 && <0.6), text (>=0.11 && <1.2) [details] |
License | BSD-3-Clause |
Copyright | 2009–2014 Roel van Dijk, Bas van Dijk |
Author | Roel van Dijk <vandijk.roel@gmail.com>, Bas van Dijk <v.dijk.bas@gmail.com> |
Maintainer | Roel van Dijk <vandijk.roel@gmail.com> |
Category | Natural Language Processing, Numerical, Text |
Home page | https://github.com/roelvandijk/numerals |
Bug tracker | https://github.com/roelvandijk/numerals/issues |
Source repo | head: git clone git://github.com/roelvandijk/numerals.git |
Uploaded | by RoelVanDijk at 2014-01-14T17:03:41Z |
Distributions | NixOS:0.4.1 |
Reverse Dependencies | 1 direct, 0 indirect [details] |
Downloads | 4473 total (26 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Successful builds reported [all 1 reports] |