https://github.com/bluemix/numbertoarabicwords
converting Arabic numbers to words, e.g., 314 => ثلاثمائة و أربع عشرة.
https://github.com/bluemix/numbertoarabicwords
arabic java numbers words
Last synced: 3 months ago
JSON representation
converting Arabic numbers to words, e.g., 314 => ثلاثمائة و أربع عشرة.
- Host: GitHub
- URL: https://github.com/bluemix/numbertoarabicwords
- Owner: bluemix
- Created: 2015-08-23T19:53:37.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T08:58:52.000Z (over 2 years ago)
- Last Synced: 2025-05-05T23:16:24.031Z (6 months ago)
- Topics: arabic, java, numbers, words
- Language: Java
- Size: 33.2 KB
- Stars: 56
- Watchers: 3
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NumberToArabicWords
converting Arabic numbers to words, e.g., 314 => ثلاثمائة و أربع عشرة.
تحويل الأرقام العربية إلى كتابات
```java
ArabicTools arabicTools = new ArabicTools();
arabicTools.isFeminine = true;
System.out.println(arabicTools.numberToArabicWords("314"));
// ثلاثمائة و أربع عشرة
System.out.println(arabicTools.numberToArabicWords("9872677829654774585269"));
/*
تسعة سكستيليونات
و ثمانمائة و اثنان و سبعون كوينتليوناً
و ستمائة و سبعة و سبعون كوادريليوناً
و ثمانمائة و تسعة و عشرون تريليوناً و ستمائة
و أربعة و خمسون ملياراً
و سبعمائة و أربعة و سبعون مليوناً و خمسمائة
و خمسة و ثمانون ألفاً و مئتان و تسع و ستون
*/
```
the original implementation was in Qt, ported from https://github.com/01walid/ArabicNumberToWord and converted to Java code.
Android version
----
[](https://github.com/bluemix/NumberToArabicWordsAndroid)