C#汉字转拼音
2021-06-21 10:04
标签:ini 分享图片 字母转 中汉字 str http dll bin foreach 下载并引入两个dll文件 NPinyin.dll 和 ChnCharInfo.dll 其实这两个dll 任何一个都可以实现汉字转拼音,然而 NPinyin.dll 收录的汉字并不全,但是很人性化,能识别一些常用的汉字。ChnCharInfo.dll 是微软的很全但是不人性化。另外本套代码外有一个自己维护的个别汉字文件,例如一些多音字姓氏。 本程序的使用场景是姓名转拼音,所以先判断第一个汉字是否在自己维护的拼音库中存在,如果存在者优先使用这个库中汉字所对应的拼音,如果不存在者优先使用NPinyin库中转化拼音的方法,转化失败再使用微软提供的ChnCharInfo中转拼音的方法。 Main函数 接下来是本程序维护的 PinYinDic.txt,该文件放在"\bin\Debug"目录下,当然也可以不使用。 C#汉字转拼音 标签:ini 分享图片 字母转 中汉字 str http dll bin foreach 原文地址:https://www.cnblogs.com/soundcode/p/10239417.html static void Main(string[] args)
{
string path = @"PinYinDic.txt";
StreamReader sr = new StreamReader(path, Encoding.Default);
Dictionary
PinYinHelper类
public class PinYinHelper
{
private static Encoding gb2312 = Encoding.GetEncoding("GB2312");
///
{
"红":"hong",
"贾":"jia",
"薄":"bo",
"褚":"chu",
"翟":"zhai",
"郇":"xun",
"盖":"ge",
"乐":"yue",
"区":"ou",
"卜":"bu",
"曾":"zeng",
"丁":"ding",
"无":"wu",
"长":"chang",
"其":"qi",
"巷":"xiang",
"将":"jiang",
"氏":"shi",
"色":"se",
"系":"xi",
"重":"chong",
"乜":"nie",
"孛":"bo",
"卒":"zu",
"单":"shan",
"解":"xie",
"仇":"qiu",
"隗":"wei",
"查":"zha",
"繁":"po",
"朴":"piao"
}
下一篇:Geth RPC API中文文档