zoukankan
html css js c++ java
奇怪的代码,好像没有什么场合用得着。
C#汉字转拼音
1
/**/
///
<summary>
2
///
汉字转拼音缩写
3
///
Code By MuseStudio@hotmail.com
4
///
2004-11-30
5
///
</summary>
6
///
<param name="str">
要转换的汉字字符串
</param>
7
///
<returns>
拼音缩写
</returns>
8
public
string
GetPYString(
string
str)
9
{
10
string
tempStr
=
""
;
11
foreach
(
char
c
in
str)
12
{
13
if
((
int
)c
>=
33
&&
(
int
)c
<=
126
)
14
{
//
字母和符号原样保留
15
tempStr
+=
c.ToString();
16
}
17
else
18
{
//
累加拼音声母
19
tempStr
+=
GetPYChar(c.ToString());
20
}
21
}
22
return
tempStr;
23
}
24
25
/**/
///
<summary>
26
///
取单个字符的拼音声母
27
///
Code By MuseStudio@hotmail.com
28
///
2004-11-30
29
///
</summary>
30
///
<param name="c">
要转换的单个汉字
</param>
31
///
<returns>
拼音声母
</returns>
32
public
string
GetPYChar(
string
c)
33
{
34
byte
[] array
=
new
byte
[
2
];
35
array
=
System.Text.Encoding.Default.GetBytes(c);
36
int
i
=
(
short
)(array[
0
]
-
'
\0
'
)
*
256
+
((
short
)(array[
1
]
-
'
\0
'
));
37
38
if
( i
<
0xB0A1
)
return
"
*
"
;
39
if
( i
<
0xB0C5
)
return
"
a
"
;
40
if
( i
<
0xB2C1
)
return
"
b
"
;
41
if
( i
<
0xB4EE
)
return
"
c
"
;
42
if
( i
<
0xB6EA
)
return
"
d
"
;
43
if
( i
<
0xB7A2
)
return
"
e
"
;
44
if
( i
<
0xB8C1
)
return
"
f
"
;
45
if
( i
<
0xB9FE
)
return
"
g
"
;
46
if
( i
<
0xBBF7
)
return
"
h
"
;
47
if
( i
<
0xBFA6
)
return
"
g
"
;
48
if
( i
<
0xC0AC
)
return
"
k
"
;
49
if
( i
<
0xC2E8
)
return
"
l
"
;
50
if
( i
<
0xC4C3
)
return
"
m
"
;
51
if
( i
<
0xC5B6
)
return
"
n
"
;
52
if
( i
<
0xC5BE
)
return
"
o
"
;
53
if
( i
<
0xC6DA
)
return
"
p
"
;
54
if
( i
<
0xC8BB
)
return
"
q
"
;
55
if
( i
<
0xC8F6
)
return
"
r
"
;
56
if
( i
<
0xCBFA
)
return
"
s
"
;
57
if
( i
<
0xCDDA
)
return
"
t
"
;
58
if
( i
<
0xCEF4
)
return
"
w
"
;
59
if
( i
<
0xD1B9
)
return
"
x
"
;
60
if
( i
<
0xD4D1
)
return
"
y
"
;
61
if
( i
<
0xD7FA
)
return
"
z
"
;
62
63
return
"
*
"
;
64
}
65
66
http://kwklover.cnblogs.com/archive/2006/01/12/316308.html
查看全文
相关阅读:
http://www.codeplex.com/ 一个不错的开源网站
阳光灿烂每一天z
Mercurial使用简单介绍zz
德国人的记事本 zz
你一定要知道的71个做饭技巧
推荐一个原型设计软件 Balsamiq Mockups
不能一起吃的食物
雷电预防
马云 + 史玉柱的40条经典语录zz
(转)扩展ArcGIS API for Silverlight/WPF 中的TextSymbol支持角度标注
原文地址:https://www.cnblogs.com/LCX/p/387797.html
最新文章
机器学习 | 5种基于机器学习的客户价值预测分析方法
机器学习 | 基于机器学习的银行电话营销客户购买可能性预测分析
C#多态(二)
C#enum枚举
C#abstract 抽象类
C# hashtable 哈希表
ArrayList 数组链表
C#继承
链表集合List
C#Interface 接口
热门文章
C#继承(二)
C#Interface 接口(二)
C# SerialPort异步读取总结
将小于正整数N的数按字母顺序排序问题
WinConsole中文编码问题
【环境】JDK+ANDROIDSDK环境变量配置问题及J2EE安装
【递归】苹果分配震荡问题
Zz:tar压缩解压缩命令详解
[转]Linux下的中文输入法——fcitx
一个比较好的博客地址,分析经济现象的
Copyright © 2011-2022 走看看