Click here to Skip to main content
15,879,239 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

 
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 
You missed my Idea. I donot convert any typed data to their textual but a string pointer.
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 
GeneralRe: Extra addition for English users Pin
benjymous2-Apr-02 21:53
benjymous2-Apr-02 21:53 
GeneralNot So Unique Pin
Dave Goodman1-Apr-02 20:47
Dave Goodman1-Apr-02 20:47 
GeneralRe: Not So Unique Pin
Christian Graus1-Apr-02 20:55
protectorChristian Graus1-Apr-02 20:55 
GeneralRe: Not So Unique Pin
Jeremy Falcon2-Apr-02 3:01
professionalJeremy Falcon2-Apr-02 3:01 
GeneralRe: Not So Unique Pin
Jeremy Falcon2-Apr-02 3:07
professionalJeremy Falcon2-Apr-02 3:07 
GeneralRe: Not So Unique Pin
Dave Goodman2-Apr-02 8:59
Dave Goodman2-Apr-02 8:59 
GeneralGoogle Pin
Todd Smith1-Apr-02 16:30
Todd Smith1-Apr-02 16:30 
GeneralRe: Google Pin
Jeremy Falcon2-Apr-02 3:09
professionalJeremy Falcon2-Apr-02 3:09 

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.