jmngige / numwordconverter

A Java library for converting numeric values to their word representations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Number To Word Converter

v0.1.0-beta version

Getting Started:

To incorporate the NumberToWordsConverter library into your project, add the following dependency to your Maven configuration:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
  • add the following dependency into your pom.xml file together with your other dependencies.
<dependency>
    <groupId>com.github.jmngige</groupId>
    <artifactId>numwordconverter</artifactId>
    <version>v0.1.0-beta</version>
</dependency>

Implementation

Once the library is correctly imported, create an instance of NumbetoWordConverter and call the EnglishNumber function. Check the implementation below.

NumbetoWordConverter converter = new NumbetoWordConverter();
Long number = 100_000_000; //or 100000000
String inwords = converter.EnglishNumber(number);
System.out.println(inwords);

Output

One Hundred Million

MIT License

License: MIT


Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Java library for converting numeric values to their word representations.


Languages

Language:Java 100.0%