Is there any way in Pharo to convert a number to words. For example: 1200 = one thousand two hundred only.

its not that hard to implement, but just curious to know.

有帮助吗?

解决方案

Integer>>asWords will do this.

1200 asWords returns 'one thousand, two hundred'.

I found it by searching for "thousand" using Pharo's Finder tool.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top