Small library to convert numbers to english word.
Example : 100
in english One hundred
or -224
in english minus two hundred twenty four
compile 'com.github.mjm918:NumberToWord:1.0'
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
NumberToWord.Convert(1001988);
Right now it only converts positive or negative integers. No floating value is accepted.