-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathen-us.go
91 lines (76 loc) · 2.32 KB
/
en-us.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package ntw
import (
"fmt"
"strings"
)
func init() {
// register the language
Languages["en-us"] = Language{
Name: "American English",
Aliases: []string{"en", "en-us", "es_US", "american", "english"},
Flag: "🇺🇸",
IntegerToWords: IntegerToEnUs,
}
}
// IntegerToEnUs converts an integer to American English words
func IntegerToEnUs(input int) string {
var englishMegas = []string{"", "thousand", "million", "billion", "trillion", "quadrillion", "quintillion", "sextillion", "septillion", "octillion", "nonillion", "decillion", "undecillion", "duodecillion", "tredecillion", "quattuordecillion"}
var englishUnits = []string{"", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}
var englishTens = []string{"", "ten", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"}
var englishTeens = []string{"ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen"}
//log.Printf("Input: %d\n", input)
words := []string{}
if input < 0 {
words = append(words, "minus")
input *= -1
}
// split integer in triplets
triplets := integerToTriplets(input)
//log.Printf("Triplets: %v\n", triplets)
// zero is a special case
if len(triplets) == 0 {
return "zero"
}
// iterate over triplets
for idx := len(triplets) - 1; idx >= 0; idx-- {
triplet := triplets[idx]
//log.Printf("Triplet: %d (idx=%d)\n", triplet, idx)
// nothing todo for empty triplet
if triplet == 0 {
continue
}
// three-digits
hundreds := triplet / 100 % 10
tens := triplet / 10 % 10
units := triplet % 10
//log.Printf("Hundreds:%d, Tens:%d, Units:%d\n", hundreds, tens, units)
if hundreds > 0 {
words = append(words, englishUnits[hundreds], "hundred")
}
if tens == 0 && units == 0 {
goto tripletEnd
}
switch tens {
case 0:
words = append(words, englishUnits[units])
case 1:
words = append(words, englishTeens[units])
break
default:
if units > 0 {
word := fmt.Sprintf("%s-%s", englishTens[tens], englishUnits[units])
words = append(words, word)
} else {
words = append(words, englishTens[tens])
}
break
}
tripletEnd:
// mega
if mega := englishMegas[idx]; mega != "" {
words = append(words, mega)
}
}
//log.Printf("Words length: %d\n", len(words))
return strings.Join(words, " ")
}