https://github.com/lofcz/amount2words
https://github.com/lofcz/amount2words
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lofcz/amount2words
- Owner: lofcz
- License: mit
- Created: 2024-04-16T21:35:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-17T04:13:28.000Z (over 1 year ago)
- Last Synced: 2025-06-08T10:37:19.487Z (4 months ago)
- Language: C#
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Amount2Words
A simple converter of numbers into their word counterparts. Supports `cz`, `en` languages and `czk`, `eur`, `usd`, `gbp`, `none` currencies.
## Usage
`atw.amountToWords(amount, lang = "cz", curr = "czk")`
## Examples
### C#
```cs
Atw.AmountToWords(150010) -> jedno sto padesát tisíců deset korun českých
Atw.AmountToWords(18) -> osmnáct korun českých
```### JS
```js
atw.amountToWords(150010) -> jedno sto padesát tisíců deset korun českých
atw.amountToWords(18) -> osmnáct korun českých
atw.amountToWords(115.2) -> jedno sto patnáct korun českých dvacet haléřů
```