Click here to Skip to main content
Click here to Skip to main content

Converting numbers to the word equivalent.

By , 12 May 2013
 

Introduction

This is an alternative Tip for Converting numbers to the word equivalent. by OriginalGriff.

Using the Code

After looking at the code of OriginalGriff, I found a shorter alternative:

static string[] numbers = new string[] { 
    "Zero", 
    "One", 
    "Two", 
    "Three",
    ... ,
    "Five hundred and sixty-eight",
    "Five hundred and sixty-nine",
    ...
};
public static string ConvertToWords(int number)
{
    if (number < 0)
    {
        return "Negative numbers not supported";
    }
    else if (numbers.Length > number)
    {
        return numbers[number];
    }
    else
    {
        return "Number too large";
    }
}

Please note: you have to start with "Zero", otherwise the code don't will work. And if you end with "Thousand" for example, you have to add each number from 0 to 1000. If you forget "Five" for example, my code don't will work properly.

Advantages of my code:
  • Shorter (If you add three values to the array, my code isn't shorter. However, if you add 100 values to the array, my code is shorter than the code of OriginalGriff)
  • Faster at runtime
Disadvantages:
  • It costs more memory

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

ProgramFOX
Belgium Belgium
Member
No Biography provided

Comments and Discussions

Comment 7 messages have been posted for this article Visit http://www.codeproject.com/Tips/591761/Converting-numbers-to-the-word-equivalent to post and view comments on this article, or click here to get a print view with messages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 12 May 2013
Article Copyright 2013 by ProgramFOX
Everything else Copyright © CodeProject, 1999-2013
Terms of Use