How to convert a numeric value or currency to English words using C#
Introduction
After looking around the web for this functionality and failing to get an answer to my problem. I decided to spare some minutes and develop this functionality up to my requirement.
I've decided to share with developers out who may require it.
The program accepts numbers/numeric values as input and outputs an an English word representation.It accepts numbers ranging from 1 to some billions.
Here is the Class code:
public class NumberToEnglish
{
public NumberToEnglish() { }
{
public NumberToEnglish() { }
public String changeNumericToWords(double numb)
{
String num = numb.ToString();
return changeToWords(num, false);
}
public String changeCurrencyToWords(String numb)
{
{
return changeToWords(numb, true);
}
public String changeNumericToWords(String numb)
{
{
return changeToWords(numb, false);
}
public String changeCurrencyToWords(double numb)
{
{
return changeToWords(numb.ToString(), true);
}
private String changeToWords(String numb, bool isCurrency)
{
{
String val = "", wholeNo = numb, points = "", andStr = "", pointStr = "";
String endStr = (isCurrency) ? ("Only") : ("");
try
{
{
int decimalPlace = numb.IndexOf(".");
if (decimalPlace > 0)
{
{
wholeNo = numb.Substring(0, decimalPlace);
points = numb.Substring(decimalPlace + 1);
if (Convert.ToInt32(points) > 0)
{
{
andStr = (isCurrency) ? ("and") : ("point");// just to separate whole numbers from points/cents
endStr = (isCurrency) ? ("Cents " + endStr) : ("");
pointStr = translateCents(points);
}
}
val = String.Format("{0} {1}{2} {3}", translateWholeNumber(wholeNo).Trim(), andStr, pointStr, endStr);
}
catch { ;}
return val;
}
private String translateWholeNumber(String number)
{
string word = "";
try
{
{
bool beginsZero = false;//tests for 0XX
bool isDone = false;//test if already translated
double dblAmt = (Convert.ToDouble(number));
//if ((dblAmt > 0) && number.StartsWith("0"))
if (dblAmt > 0)
{//test for zero or digit zero in a nuemric
{//test for zero or digit zero in a nuemric
beginsZero = number.StartsWith("0");
int numDigits = number.Length;
int pos = 0;//store digit grouping
String place = "";//digit grouping name:hundres,thousand,etc...
switch (numDigits)
{
{
case 1://ones' range
word = ones(number);
isDone = true;
break;
case 2://tens' range
word = tens(number);
isDone = true;
break;
case 3://hundreds' range
pos = (numDigits % 3) + 1;
place = " Hundred ";
break;
case 4://thousands' range
case 5:
case 6:
pos = (numDigits % 4) + 1;
place = " Thousand ";
break;
case 7://millions' range
case 8:
case 9:
pos = (numDigits % 7) + 1;
place = " Million ";
break;
case 10://Billions's range
pos = (numDigits % 10) + 1;
place = " Billion ";
break;
//add extra case options for anything above Billion...
default:
isDone = true;
break;
}
if (!isDone)
{//if transalation is not done, continue...(Recursion comes in now!!)
{//if transalation is not done, continue...(Recursion comes in now!!)
word = translateWholeNumber(number.Substring(0, pos)) + place + translateWholeNumber(number.Substring(pos));
//check for trailing zeros
if (beginsZero) word = " and " + word.Trim();
}
//ignore digit grouping names
if (word.Trim().Equals(place.Trim())) word = "";
}
}
catch { ;}
return word.Trim();
}
private String tens(String digit)
{
{
int digt = Convert.ToInt32(digit);
String name = null;
switch (digt)
{
{
case 10:
name = "Ten";
break;
case 11:
name = "Eleven";
break;
case 12:
name = "Twelve";
break;
case 13:
name = "Thirteen";
break;
case 14:
name = "Fourteen";
break;
case 15:
name = "Fifteen";
break;
case 16:
name = "Sixteen";
break;
case 17:
name = "Seventeen";
break;
case 18:
name = "Eighteen";
break;
case 19:
name = "Nineteen";
break;
case 20:
name = "Twenty";
break;
case 30:
name = "Thirty";
break;
case 40:
name = "Fourty";
break;
case 50:
name = "Fifty";
break;
case 60:
name = "Sixty";
break;
case 70:
name = "Seventy";
break;
case 80:
name = "Eighty";
break;
case 90:
name = "Ninety";
break;
default:
if (digt > 0)
{
{
name = tens(digit.Substring(0, 1) + "0") + " " + ones(digit.Substring(1));
}
break;
}
return name;
}
private String ones(String digit)
{
{
int digt = Convert.ToInt32(digit);
String name = "";
switch (digt)
{
{
case 1:
name = "One";
break;
case 2:
name = "Two";
break;
case 3:
name = "Three";
break;
case 4:
name = "Four";
break;
case 5:
name = "Five";
break;
case 6:
name = "Six";
break;
case 7:
name = "Seven";
break;
case 8:
name = "Eight";
break;
case 9:
name = "Nine";
break;
}
return name;
}
private String translateCents(String cents)
{
{
String cts = "", digit = "", engOne = "";
for (int i = 0; i < cents.Length; i++)
{
{
digit = cents[i].ToString();
if (digit.Equals("0"))
{
{
engOne = "Zero";
}
else
{
{
engOne = ones(digit);
}
cts += " " + engOne;
}
return cts;
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20200170/viewspace-742425/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- How to Convert Decimal Numbers to Words with PythonDecimalPython
- [English Homwork] Make 10 sentences by using new lesson words
- How to describe the main content of the web novel "龍藏" in about 50 English words?AIWeb
- set(stopwords.words(‘english‘))
- 函式: CONVERT_TO_LOCAL_CURRENCY函式
- Leetcode 273 Integer to English WordsLeetCode
- LeetCode-Integer to English WordsLeetCode
- How to express money in EnglishExpress
- How to Convert a Date Time to “X minutes ago” in C# zGoC#
- 【Using English】28 - Security with HTTPS and SSLHTTP
- How to Convert Subversion Repo to GitGit
- How to Find Out How Much Space an Index is UsingIndex
- How to release space from database( in other words: resize datafile ) (zt)Database
- How to release space from database( in other words: resize datafile ) 【zt】Database
- c# Aspose.Words記錄C#
- LOW_VALUE、HIGH_VALUE、ENDPOINT_VALUE轉換--UTL_RAW、DBMS_STATS.CONVERT_RAW_VALUE
- how to get sharepoint lookup value
- How to inject value into bean properties in SpringBeanSpring
- ORA-06502 PL/SQL: numeric or value error stringSQLError
- How to Convert Class File to Java File Online?Java
- Unable to convert MySQL date/time value to System.DateTimeMySql
- How to get the description of blast hit using blastdbcmd?AST
- How to develop locally a Laravel app using LaragondevLaravelAPPGo
- Linguistics-English-Would, Should, and Could: How to Use Them CorrectlyNGUI
- How to update BOL entity property value via ABAP code
- Python演算法-How to sort a dictionary by valuePython演算法
- Using MongoDB in C#MongoDBC#
- How To Using Flashback Data Archive (Oracle Total Recall)HiveOracle
- How to Restore the Database Using AMDU after Diskgroup CorruptionRESTDatabase
- How to check whether the current database in using Oracle optionsDatabaseOracle
- {C#} How task works?C#
- C# convert ImageSource to byte arrayC#
- Why Is My Query Using a High Value for Degree of ParallelismParallel
- How to Quickly Create a Copy of a Table using Transact-SQLUISQL
- how to run demo city bars using sencha architect
- How to copy a datafile from ASM to a file system not using RMANASM
- How To Export a Concurrent Program and Executable Using Fndload ?Export
- How to Convert a Single-Instance ASM to Cluster ASM [ID 452758.1]ASM