Is there a library or a class/function that I can use to convert an integer to it\'s verbal representation?
Example input:
4,567,788`
I was tasked to create a WEB API that converts numbers to words using C#.
Can be whole number or with decimal points in 48 hours time.
The call will be coming from a front-end application using Ajax Post method and return the converted result in the webpage.
I've publicly shared that project in the GitHub for reference: https://github.com/marvinglennlacuna/NumbersToWordsConverter.Api
With the following technical implementatation in placed:
And with technical documentation about the following as well:
**Result via Web Page (US-001) **
US-001 Convert Numbers to Words via web page process
US-001 Convert Numbers to Words via web page output
Result via Postman (US-002)
US-002 - Convert Numbers to Words via Postman process
US-002 - Convert Numbers to Words via Postman output
I think it's just worth sharing a working solution in the case you need it for reference in interview/code test/school or for fun only.
Cheers, Marvin