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
查看全文
相关阅读:
数据库设计
最近发生的事
轻松搞定面试中的二叉树题目
二叉树的遍历方法
静态库Lib和动态库Dll
深入理解C/C++数组和指针
夜间日记
typedef用法小结
什么是静态链接库,什么是动态链接库
线段树
原文地址:https://www.cnblogs.com/LCX/p/387797.html
最新文章
JavaScript与Dom的关系
一个程序员的奋斗历程(转)
seo&spam
JavaScript的Cookies(转)
X++直接操作AX数据库
AX 判断数据库字段为NULL
AX 2009 EP 用户访问速度问题
AX 2009根据物料得到默认的站点,仓库
笔记(加强AX对月份操作)
AX 2009 创建普通日记账
热门文章
Python Coding Rule
tornado解析http body的过程分析
[转] 下辈子,无论爱与不爱,都不会再见
[转] 当你心烦意乱时,请您读一读,顿时平静(励志)
OSMS运维管理系统开源
[转] Python标准库的threading.Thread类
tornado的长轮询聊天室例子分析
财付通支付接口的python版本
常见的DOS命令
TSQL
Copyright © 2011-2022 走看看