Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 622 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 622 Bytes

NumberToWord

Small library to convert numbers to english word.
Example : 100 in english One hundred or -224 in english minus two hundred twenty four

To use this library add the following in your android project app gradle:

compile 'com.github.mjm918:NumberToWord:1.0'

Then add the following in project gradle:

allprojects { repositories { ... maven { url 'https://jitpack.io' } } }

Finally call the function


NumberToWord.Convert(1001988);

Limitations:


Right now it only converts positive or negative integers. No floating value is accepted.