欢迎访问:常州市武进区嘉泽中心小学网站 !今天是:
栏目列表
您现在的位置是:首页>>教师>>计算机技术>>程序设计>>杂项>>文章内容
把Number4096输出为String4,096
发布时间:2008-11-20   点击:   来源:本站原创   录入者:佚名
 

类别: 各种转换

题目:将一个number转换为一个string

DEMO:
输入一个number:4096000
输出string为:  4,096,000

// This function accepts a number and converts it to a
// string, inserting commas where appropriate.
PTSTR BigNumToString(LONG lNum, PTSTR szBuf) {

   TCHAR szNum[100];
   wsprintf(szNum, TEXT("%d"), lNum);
   NUMBERFMT nf;
   nf.NumDigits = 0;     

   nf.LeadingZero = FALSE;       

   nf.Grouping = 3;

   nf.lpDecimalSep = TEXT(".");   

   nf.lpThousandSep = TEXT(",");  

   nf.NegativeOrder = 0;   
   GetNumberFormat(LOCALE_USER_DEFAULT, 0, szNum, &nf, szBuf, 100);
   return(szBuf);
}

Usage:

TCHAR szBuf[50];
BigNumToString(dwPageSize, szBuf);

Definition:

// The NUMBERFMT structure contains information that defines
// the format of a number string.
// The GetNumberFormat function uses this information to customize
// a number string for a specified locale.
typedef struct _numberfmt {
  UINT      NumDigits;
  UINT      LeadingZero;
  UINT      Grouping;
  LPTSTR    lpDecimalSep;
  LPTSTR    lpThousandSep;
  UINT      NegativeOrder;
} NUMBERFMT, *LPNUMBERFMT;

// The GetNumberFormat function formats a number string as a number
// string customized for a specified locale.
int GetNumberFormat(
  LCID Locale,                // locale
  DWORD dwFlags,              // options
  LPCTSTR lpValue,            // input number string
  CONST NUMBERFMT *lpFormat,  // formatting information
  LPTSTR lpNumberStr,         // output buffer
  int cchNumber               // size of output buffer
);


附件:
    关闭窗口
    打印文档
    账号登录
    保持登录 忘记密码?
    账号与武进教师培训平台同步