Modhul:NumberSpell
Praèn
Dhokumèntasi modhul iki bisa digawé ing Modhul:NumberSpell/doc
-- This module converts a number into its written English form.
-- For example, "2" becomes "two", and "79" becomes "seventy-nine".
local getArgs = require('Module:Arguments').getArgs
local p = {}
local max = 100 -- The maximum number that can be parsed.
local ones = {
[0] = 'nul',
[1] = 'siji',
[2] = 'loro',
[3] = 'telu',
[4] = 'papat',
[5] = 'lima',
[6] = 'enem',
[7] = 'pitu',
[8] = 'wolu',
[9] = 'sanga'
}
local specials = {
[10] = 'sapuluh',
[11] = 'sawelas',
[12] = 'rolas',
[13] = 'telulas',
[15] = 'limalas',
[18] = 'wolulas',
[20] = 'rong puluh',
[30] = 'telung puluh',
[40] = 'patang puluh',
[50] = 'sèket',
[60] = 'sawidak',
[70] = 'pitung puluh',
[80] = 'wolung puluh',
[90] = 'sangang puluh',
[100] = 'satus'
}
local formatRules = {
{num = 90, rule = 'sangang puluh %s'},
{num = 80, rule = 'wolung puluh %s'},
{num = 70, rule = 'pitung puluh %s'},
{num = 60, rule = 'sawidak %s'},
{num = 50, rule = 'sèket %s'},
{num = 40, rule = 'patang puluh %s'},
{num = 30, rule = 'telung puluh %s'},
{num = 20, rule = 'rong puluh %s'},
{num = 10, rule = '%slas'}
}
function p.main(frame)
local args = getArgs(frame)
local num = tonumber(args[1])
local success, result = pcall(p._main, num)
if success then
return result
else
return string.format('<strong class="error">Cacad: %s</strong>', result) -- "result" is the error message.
end
return p._main(num)
end
function p._main(num)
if type(num) ~= 'number' or math.floor(num) ~= num or num < 0 or num > max then
error('input must be an integer between 0 and ' .. tostring(max), 2)
end
-- Check for numbers from 0 to 9.
local onesVal = ones[num]
if onesVal then
return onesVal
end
-- Check for special numbers.
local specialVal = specials[num]
if specialVal then
return specialVal
end
-- Construct the number from its format rule.
onesVal = ones[num % 10]
if not onesVal then
error('Unexpected error parsing input ' .. tostring(num))
end
for i, t in ipairs(formatRules) do
if num >= t.num then
return string.format(t.rule, onesVal)
end
end
error('No format rule found for input ' .. tostring(num))
end
return p