Tradukisto is a library for Java 8+ created to convert numbers to their word representations.
The main motivation behind its creation was lack of a production-ready tool providing number conversion for Polish language. There are many individual classes, but we felt there is definitely space for something well tested and ready to use in production without copy-pasting someone else's code.
- Converts
Integer
toString
with numerical representation support. - Converts
Long
toString
with numerical representation support. - Converts
BigDecimal
toString
with money representation support.
- Brazilian Portuguese
- Bulgarian
- Czech
- English
- French
- German
- Italian
- Kazakh
- Latvian
- Polish
- Russian
- Slovak
- Ukrainian
- Serbian (latin)
- Serbian (cyrillic)
- Turkish
Add tradukisto
as dependency:
repositories {
mavenCentral()
}
dependencies {
compile 'pl.allegro.finance:tradukisto:1.12.0'
}
and use it:
ValueConverters intConverter = ValueConverters.ENGLISH_INTEGER;
String valueAsWords = intConverter.asWords(1_234);
assertEquals("one thousand two hundred thirty-four", valueAsWords);
LongValueConverters longConverter = LongValueConverters.ENGLISH_LONG;
String valueAsWords = converter.asWords(1_000_000_000_000_000_000);
assertEquals("one quintillion", valueAsWords);
MoneyConverters converter = MoneyConverters.ENGLISH_BANKING_MONEY_VALUE;
String moneyAsWords = converter.asWords(new BigDecimal("1234.56"));
assertEquals("one thousand two hundred thirty-four £ 56/100", moneyAsWords);
String moneyAsWordsWithCurrency = converter.asWords(new BigDecimal("1234.56", "EUR"));
assertEquals("one thousand two hundred thirty-four EUR 56/100", moneyAsWordsWithCurrency);
Tradukisto can handle only values with no more than two digits after the decimal point. Otherwise
IllegalArgumentException
will be thrown. For that reason you should either construct BigDecimal
object based on String
value as shown in example above or use setScale
method to ensure that given value has appropriate precision.
Copyright 2015-2022 Allegro Group
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.