Skip to content

Light weight library for Android to convert numbers to english word

Notifications You must be signed in to change notification settings

mjm918/NumberToWord

Repository files navigation

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.