Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / C

Convert Integers to Their Textual Description

Rate me:
Please Sign up or sign in to vote.
3.34/5 (13 votes)
6 May 2014Apache2 min read 158.3K   1.3K   27   52
Convert an integer to its textual description

Sample Image

Preface

Ever wanted a friendlier way to display any given amount to a user? Or, perhaps you're coding a grammatically correct English application, racing game, tracking visitors, or creating an accounting solution. Whatever the case, there are some times when a programmer needs to represent a number as a written word (i.e., 4 becomes "four"). And, that's the goal of this routine.

The original version (as most typical implementations of this) used strings for calculations and conversions and while it worked, it was slower. However, I updated the algorithm to not do this anymore. As a result, I noticed an average 310% speed increase (on a Pentium IV) despite the fact I also added support for much larger numbers as well.

Usage

Using this routine is straightforward. It does make use of C-style strings as they are fast and extremely portable with most environments. The sole routine that does the grunt work is named GetNumWord() and is prototyped as follows...

C++
// prototype/signature
char *GetNumWord (long long llNumber, char *szDest, 
                  unsigned int unLen, bool bOrdinal, bool bUseAnd);

Parameter Descriptions:

llNumber = This is the 64-bit number to convert.
szDest = Pointer to the output buffer (char array).
unLen = Size in bytes of the output buffer (not string length).
bOrdinal = Setting this to true will return the ordinal version of the number (e.g., first); otherwise, the cardinal version is returned (e.g., one).
bUseAnd = This will determine if the and conjunction is used in the output or not (e.g., One Hundred And One).

Example

C++
char szBuffer[100] = {0};
GetNumWord(5001, szBuffer, sizeof(szBuffer), false, false);
GetNumWord(-10, szBuffer, sizeof(szBuffer), false, false);
GetNumWord(123, szBuffer, sizeof(szBuffer), true, true);

Will return...

"Five Thousand One"
"Negative Ten"
"One Hundred And Twenty-Third"

Limitations

The function takes a long long as the number parameter. On most 32-bit and 64-bit systems, this means the lowest number you can pass is <nobr>-9,223,372,036,854,775,808 and the highest number is 9,223,372,036,854,775,807.

Also, 64-bit arithmetic on a 32-bit CPU is a bit slower. However, the difference is negligible for most applications, and 64-bit CPUs are becoming more and more mainstream, so this consideration will soon be obsolete.

Credits & History

<nobr>Article's Author<nobr> - Jeremy Falcon
<nobr>The "and" Conjunction Suggestion<nobr> - benjymous
<nobr>Memory Leak Tip<nobr> - James Curran
  • <nobr>2007-01-13 - Ver. 2.0 released.
  • <nobr>2002-04-12 - Ver. 1.1 released.
  • <nobr>2002-04-01 - Ver. 1.0 released.

License

Permission is granted to anyone to use this software for any purpose on any computer system, and to alter it and redistribute it freely, subject to the following restrictions found in NumWord.c. It's nothing big. Essentially, it states that if your computer blows up then it's not my fault, and if you use this code then give credit where it's due.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Team Leader
United States United States
I've been in software development since 1994. Over the years I've learned quite a lot in what it takes to complete the process of pushing out a quality product to customers in a timely fashion. As most of my colleagues could attest, there have been many challenges in our new and growing field in the past couple of decades as the industry matures rapidly. Much more so than most others historically speaking.

As such, I've learned one of the best aspects of software engineering is embracing the change that inherently comes along with it as new technologies constantly emerge to help us improve our world one application at a time as we make sense of the overwhelming amount of data now prevalent in the Information Age.

We truly live in a time unlike that ever known to mankind in recorded history, and it is my hope to do my part to help it along to face the challenges and demands of tomorrow.

Comments and Discussions

 
QuestionCan we have the PHP? Pin
ChinaHorse18-Mar-04 17:19
ChinaHorse18-Mar-04 17:19 
AnswerRe: Can we have the PHP? Pin
Jeremy Falcon19-Mar-04 9:49
professionalJeremy Falcon19-Mar-04 9:49 
GeneralRe: Can we have the PHP? Pin
ChinaHorse21-Mar-04 0:28
ChinaHorse21-Mar-04 0:28 
GeneralRe: Can we have the PHP? Pin
Jeremy Falcon21-Mar-04 3:25
professionalJeremy Falcon21-Mar-04 3:25 
GeneralYes, SSH Pin
ChinaHorse21-Mar-04 22:17
ChinaHorse21-Mar-04 22:17 
GeneralRe: Yes, SSH Pin
Jeremy Falcon23-Jun-04 8:07
professionalJeremy Falcon23-Jun-04 8:07 
GeneralIdeas Ideas! Pin
Nguyen Binh3-Apr-03 22:19
Nguyen Binh3-Apr-03 22:19 
GeneralRe: Ideas Ideas! Pin
Jeremy Falcon23-Jun-04 8:17
professionalJeremy Falcon23-Jun-04 8:17 
Thanks for the suggestions, but my primary goal with this was to keep things simple and fast, something wich a robust string library make make it slower.

Also, do not prefer to use "stolen" code as you put it. I believe in always giving credit where it's do.

Jeremy Falcon
GeneralRe: Ideas Ideas! Pin
Member 761463224-Nov-13 1:18
Member 761463224-Nov-13 1:18 
GeneralBuffer overwrite waiting to happen. Pin
2-Jul-02 11:10
suss2-Jul-02 11:10 
GeneralRe: Buffer overwrite waiting to happen. Pin
Jeremy Falcon2-Jul-02 14:11
professionalJeremy Falcon2-Jul-02 14:11 
GeneralTwo Notes.... Pin
James Curran8-Apr-02 3:02
James Curran8-Apr-02 3:02 
GeneralRe: Two Notes.... Pin
Jeremy Falcon8-Apr-02 4:16
professionalJeremy Falcon8-Apr-02 4:16 
GeneralRe: Two Notes.... Pin
Chris Maunder9-Apr-02 14:35
cofounderChris Maunder9-Apr-02 14:35 
GeneralRe: Two Notes.... Pin
Jeremy Falcon9-Apr-02 15:24
professionalJeremy Falcon9-Apr-02 15:24 
GeneralOvercome limitation of interger to text string Pin
Nguyen Luong Son2-Apr-02 17:35
Nguyen Luong Son2-Apr-02 17:35 
GeneralRe: Overcome limitation of interger to text string Pin
Jeremy Falcon3-Apr-02 4:29
professionalJeremy Falcon3-Apr-02 4:29 
GeneralRe: Overcome limitation of interger to text string Pin
Member 761463224-Nov-13 1:15
Member 761463224-Nov-13 1:15 
GeneralFYI Pin
Jeremy Falcon2-Apr-02 15:16
professionalJeremy Falcon2-Apr-02 15:16 
Questionhow about a redneck version? Pin
Chris Losinger2-Apr-02 7:09
professionalChris Losinger2-Apr-02 7:09 
AnswerRe: how about a redneck version? Pin
Jeremy Falcon2-Apr-02 9:45
professionalJeremy Falcon2-Apr-02 9:45 
GeneralExtra addition for English users Pin
benjymous2-Apr-02 3:07
benjymous2-Apr-02 3:07 
GeneralRe: Extra addition for English users Pin
Jeremy Falcon2-Apr-02 3:15
professionalJeremy Falcon2-Apr-02 3:15 
GeneralRe: Extra addition for English users Pin
Tim Smith2-Apr-02 14:56
Tim Smith2-Apr-02 14:56 
GeneralRe: Extra addition for English users Pin
Jeremy Falcon2-Apr-02 15:14
professionalJeremy Falcon2-Apr-02 15:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.