SoftCircuits / NumberToText

Converts a number to text. For example, converts 123.45 to "One hundred twenty-three and 45/100".

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NumberToText

NuGet version (SoftCircuits.NumberToText)

Install-Package SoftCircuits.NumberToText

IMPORTANT

This repository has been deprecated. Please use SoftCircuits.Wordify instead.

Overview

Converts a number to text. For example, the library would convert 123.45 to "One hundred twenty-three and 45/100". Useful for check printing or other cases where you want to display a number as text.

Example

NumberToText converter = new NumberToText();
string s = converter.Transform(123.45);

Note that negative numbers are converted to positive numbers before transforming. Therefore, 123.45 would product the same result for as for -123.45. Depending on how you want negative numbers handled, you could prefix the result with "Minus" or something to that effect when the value is a negative number.

Additional Information

For additional information, check the Converting Numbers to Words article on Black Belt Coder.

About

Converts a number to text. For example, converts 123.45 to "One hundred twenty-three and 45/100".

License:MIT License


Languages

Language:C# 100.0%