欢迎光临
我们一直在努力

c#取得汉字的拼音的首字母-.NET教程,C#语言

建站超值云服务器,限时71元/月

今天在yyf9989 的 blog 上看到一篇《c#计算汉语拼音码 》,看了里面的代码,觉得是比较繁琐。它主要是检索输入的汉字在数组中的位置,然后返回第一个字母。于是就想起来了,可以利用汉字在计算机里面的编码来的到汉字的首拼音,查找了一些资料,通过以下的方法成功的得到了解决。就放在这里,请朋友们参考。

static public string getchinesespell(string strtext)

{

int len = strtext.length;

string mystr = "";

for(int i=0;i<len;i++)

{

mystr += getspell(strtext.substring(i,1));

}

return mystr;

}

static public string getspell(string cnchar)

{

byte[] arrcn = encoding.default.getbytes(cnchar);

if(arrcn.length > 1)

{

int area = (short)arrcn[0];

int pos = (short)arrcn[1];

int code = (area<<8) + pos;

int[] areacode = {45217,45253,45761,46318,46826,47010,47297,47614,48119,48119,49062,49324,49896,50371,50614,50622,50906,51387,51446,52218,52698,52698,52698,52980,53689,54481};

for(int i=0;i<26;i++)

{

int max = 55290;

if(i != 25) max = areacode[i+1];

if(areacode[i]<=code && code<max)

{

return encoding.default.getstring(new byte[]{(byte)(65+i)});

}

}

return "*";

}

else return cnchar;

}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » c#取得汉字的拼音的首字母-.NET教程,C#语言
分享到: 更多 (0)