I couldn't resist.
As the Python code was supplied, I used it to create a Template function. This is created on the Template function page of the preferences. The values are:
Function: number_as_words
Argument count: 1
Documentation: number_as_words(val) -- Given a number, return the words for the number.
Program code:
Code:
def evaluate(self, formatter, kwargs, mi, locals, val):
try:
num=int(val)
except:
return val
d = { 0 : 'zero', 1 : 'one', 2 : 'two', 3 : 'three', 4 : 'four', 5 : 'five',
6 : 'six', 7 : 'seven', 8 : 'eight', 9 : 'nine', 10 : 'ten',
11 : 'eleven', 12 : 'twelve', 13 : 'thirteen', 14 : 'fourteen',
15 : 'fifteen', 16 : 'sixteen', 17 : 'seventeen', 18 : 'eighteen',
19 : 'nineteen', 20 : 'twenty',
30 : 'thirty', 40 : 'forty', 50 : 'fifty', 60 : 'sixty',
70 : 'seventy', 80 : 'eighty', 90 : 'ninety' }
k = 1000
m = k * 1000
b = m * 1000
t = b * 1000
if (num < 20):
return d[num]
if (num < 100):
if num % 10 == 0: return d[num]
else: return d[num // 10 * 10] + '-' + d[num % 10]
if (num < k):
if num % 100 == 0: return d[num // 100] + ' hundred'
else: return d[num // 100] + ' hundred and ' + int_to_en(num % 100)
if (num < m):
if num % k == 0: return int_to_en(num // k) + ' thousand'
else: return int_to_en(num // k) + ' thousand, ' + int_to_en(num % k)
if (num < b):
if (num % m) == 0: return int_to_en(num // m) + ' million'
else: return int_to_en(num // m) + ' million, ' + int_to_en(num % m)
if (num < t):
if (num % b) == 0: return int_to_en(num // b) + ' billion'
else: return int_to_en(num // b) + ' billion, ' + int_to_en(num % b)
if (num % t == 0): return int_to_en(num // t) + ' trillion'
else: return int_to_en(num // t) + ' trillion, ' + int_to_en(num % t)
return val
The program code needs to be copied exactly, including the leading spaces.
To use this, the template is:
Code:
{series_index:'number_as_words($)'|Book |}
Or, if you want to capitalise it:
Code:
{series_index:'capitalize(number_as_words($))'|Book |}
The code is limited as it only handles integers. If the series index is not an integer, the number will be used.
@theducks: I took this as a request for use in a metadata plugboard, not a file name template.