惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
V
Visual Studio Blog
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
J
Java Code Geeks
博客园_首页
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
F
Full Disclosure
P
Proofpoint News Feed
The Register - Security
The Register - Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
P
Privacy International News Feed
美团技术团队
W
WeLiveSecurity
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
Schneier on Security
Schneier on Security
Schneier on Security
Engineering at Meta
Engineering at Meta
Cyberwarzone
Cyberwarzone
Microsoft Security Blog
Microsoft Security Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
G
GRAHAM CLULEY
H
Heimdal Security Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Attack and Defense Labs
Attack and Defense Labs
博客园 - 司徒正美
P
Privacy & Cybersecurity Law Blog
D
DataBreaches.Net
F
Fortinet All Blogs
博客园 - 【当耐特】
雷峰网
雷峰网
腾讯CDC
Hacker News - Newest:
Hacker News - Newest: "LLM"
Webroot Blog
Webroot Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
MongoDB | Blog
MongoDB | Blog

博客园 - 曾哲

关于在线 pdf 下载时的注意事项 - 曾哲 嵌入式JavaScript脚本解释器的研究与实现 ASP.NET中常用的26个优化性能方法 快讯:微软宣布446亿美元收购雅虎 收获的2007 被soso的爬虫 把网站爬死了 升级到Visual Studio 2008的10个技巧[转] 学习英文的常用网站 知识图书馆的到来 404 错误自动转向的问题 - 曾哲 - 博客园 常用的一些网站 C#常用正则表达式 MSN 错误 80048820 不能上 在SF.net 上看到中文介绍的开源项目 在线英汉词典 智能纠错的设计 google和yahoo的网络爬虫真厉害 .Net中的反射使用入门 【转载】 kgdiwss 的 Blog asp.net 2.0中login控件介绍 关于lucene的书
中文计数
曾哲 · 2006-08-09 · via 博客园 - 曾哲

了业务的需要无聊之极的写了一个输出中文数字的方法,效率上勉强过得去,如果你有什么更好的方法,跟贴吧。

 1
 2        /**//// <summary>
 3        /// 中文计数
 4        /// </summary>
 5        /// <param name="num">[1 - 99999]</param>
 6        /// <returns></returns>
 7        public static string NumToChineseNumStr(int num)
 8        {
 9            if(num <= 0 num > 99999)
10                throw new ArgumentException("num");
11            string[] GradeChar = new string[]{"","十","百","千","万"};
12            string[] DigitChar = new string[]{"一","二","三","四","五","六","七","八","九"};
13            char zero = '零';
14
15            int length = (int) Math.Log10(num) + 1;
16            StringBuilder output = new StringBuilder(length);
17            int[] input = new int[length];
18            int index = -1;
19            while(++index != length)
20            {
21                input[index] = (num  / (length - index == 1? 1 : (int)Math.Pow(10, length -index -1))) % 10;
22            }
23
24            bool needFix = false;
25            if(input.Length == 2 && input[0] == 1)
26                needFix = true;
27
28            for(int pos = 0; pos < input.Length; pos ++)
29            {
30                if(input[pos] == 0)
31                {
32                    if(output[output.Length -1] != zero)
33                        output.Append(zero);
34                    continue;
35                }
36                else if(!(pos == 0 && needFix))
37                {
38                    output.Append(DigitChar[input[pos] -1]);
39                }
40                output.Append(GradeChar[input.Length - pos -1]);
41            }
42            if(output[output.Length - 1] == zero)
43                output.Remove(output.Length - 1, 1);
44            return output.ToString();
45        }
46