Click here to Skip to main content
15,881,882 members
Articles / Desktop Programming / MFC
Article

XFormatNumber - A function to format numbers with commas

Rate me:
Please Sign up or sign in to vote.
4.59/5 (10 votes)
25 Jun 2002CPOL1 min read 72K   1K   22   8
An easy-to-use function that provides locale-correct comma-formatting of numbers

Introduction

Formatting of numeric values with commas looks nice, but sometimes commas are not the correct thousands separator - many countries use "." for thousands separator. To ensure the correct separator, the Win32 function GetNumberFormat() should be used. However, this API requires the setup of a decimal separator, thousands separator, digit grouping, etc., which can add many lines of code to do a simple thing.

After needing to use GetNumberFormat() one more time, I decide to make a simple function with defaults taken from the locale.

XFormatNumber Features

XFormatNumber
takes as input a numeric string, which may or may not contain decimal point and fractional digits. XFormatNumber is defined as

CString XFormatNumber(LPCTSTR lpszNumber, int nFracDigits)
The parameter lpszNumber is numeric string, and the nFracDigits parameter specifies whether to include fractional digits in the  returned CString: 0 means no fractional digits, >0 means return nFracDigits fractional digits, and -1 means return however many fractional digits are contained in the numeric string.

XFormatNumber Demo

The demo app shows results for various formatting options:

m_List.AddString(XFormatNumber(_T("1"), -1));
m_List.AddString(XFormatNumber(_T("10"), -1));
m_List.AddString(XFormatNumber(_T("100"), -1));
m_List.AddString(XFormatNumber(_T("1000"), -1));
m_List.AddString(XFormatNumber(_T("10000"), -1));
m_List.AddString(XFormatNumber(_T("100000"), -1));
m_List.AddString(XFormatNumber(_T("1000000"), -1));
m_List.AddString(XFormatNumber(_T("10000000"), -1));
m_List.AddString(XFormatNumber(_T("100000000"), -1));
m_List.AddString(XFormatNumber(_T("1000000000"), -1));
m_List.AddString(XFormatNumber(_T("1000.0"), -1));
m_List.AddString(XFormatNumber(_T("1000.00"), -1));
m_List.AddString(XFormatNumber(_T("1000.000"), -1));
m_List.AddString(XFormatNumber(_T("1000.0000"), -1));
m_List.AddString(XFormatNumber(_T("1000.00000"), 1));

XFormatNumber Screenshot

Usage

This software is released into the public domain. You are free to use it in any way you like. If you modify it or extend it, please to consider posting new code here for everyone to share. This software is provided "as is" with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause.

License

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


Written By
Software Developer (Senior) Hans Dietrich Software
United States United States
I attended St. Michael's College of the University of Toronto, with the intention of becoming a priest. A friend in the University's Computer Science Department got me interested in programming, and I have been hooked ever since.

Recently, I have moved to Los Angeles where I am doing consulting and development work.

For consulting and custom software development, please see www.hdsoft.org.






Comments and Discussions

 
GeneralPerformance Improvement Pin
Gautam Jain26-Oct-07 3:32
Gautam Jain26-Oct-07 3:32 
AnswerRe: Performance Improvement Pin
Hans Dietrich20-Apr-11 0:00
mentorHans Dietrich20-Apr-11 0:00 
Generaladded default value Pin
breakpoint3-May-06 16:21
breakpoint3-May-06 16:21 
AnswerRe: added default value Pin
Hans Dietrich19-Apr-11 23:59
mentorHans Dietrich19-Apr-11 23:59 
GeneralSome comments Pin
Victor Boctor5-Dec-02 1:01
Victor Boctor5-Dec-02 1:01 
AnswerRe: Some comments Pin
Hans Dietrich19-Apr-11 23:59
mentorHans Dietrich19-Apr-11 23:59 
Thanks.
Best wishes,
Hans


[Hans Dietrich Software]

Generalfractional digits are limited to 9 Pin
User 269421-Jul-02 22:09
professionalUser 269421-Jul-02 22:09 
AnswerRe: fractional digits are limited to 9 Pin
Hans Dietrich19-Apr-11 23:58
mentorHans Dietrich19-Apr-11 23:58 

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.