pinyinUtil.js 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. 
  2. /**
  3. * 汉字与拼音互转工具,根据导入的字典文件的不同支持不同
  4. * 对于多音字目前只是将所有可能的组合输出,准确识别多音字需要完善的词库,而词库文件往往比字库还要大,所以不太适合web环境。
  5. * @start 2016-09-26
  6. * @last 2016-09-29
  7. */
  8. ;(function(global, factory) {
  9. if (typeof module === "object" && typeof module.exports === "object") {
  10. module.exports = factory(global);
  11. } else {
  12. factory(global);
  13. }
  14. })(typeof window !== "undefined" ? window : this, function(window) {
  15. var dict = {}; // 存储所有字典数据
  16. var pinyinUtil =
  17. {
  18. /**
  19. * 解析各种字典文件,所需的字典文件必须在本JS之前导入
  20. */
  21. parseDict: function()
  22. {
  23. // 如果导入了 pinyin_dict_firstletter.js
  24. if(window.pinyin_dict_firstletter)
  25. {
  26. dict.firstletter = pinyin_dict_firstletter;
  27. }
  28. // 如果导入了 pinyin_dict_notone.js
  29. if(window.pinyin_dict_notone)
  30. {
  31. dict.notone = {};
  32. dict.py2hz = pinyin_dict_notone; // 拼音转汉字
  33. for(var i in pinyin_dict_notone)
  34. {
  35. var temp = pinyin_dict_notone[i];
  36. for(var j=0, len=temp.length; j<len; j++)
  37. {
  38. dict.notone[temp[j]] = i; // 不考虑多音字
  39. }
  40. }
  41. }
  42. // 如果导入了 pinyin_dict_withtone.js
  43. if(window.pinyin_dict_withtone)
  44. {
  45. dict.withtone = {};
  46. var temp = pinyin_dict_withtone.split(',');
  47. for(var i=0, len = temp.length; i<len; i++)
  48. {
  49. // 这段代码耗时28毫秒左右,对性能影响不大,所以一次性处理完毕
  50. dict.withtone[String.fromCharCode(i + 19968)] = temp[i]; // 这里先不进行split(' '),因为一次性循环2万次split比较消耗性能
  51. }
  52. // 拼音 -> 汉字
  53. if(window.pinyin_dict_notone)
  54. {
  55. // 对于拼音转汉字,我们优先使用pinyin_dict_notone字典文件
  56. // 因为这个字典文件不包含生僻字,且已按照汉字使用频率排序
  57. dict.py2hz = pinyin_dict_notone; // 拼音转汉字
  58. }
  59. else
  60. {
  61. // 将字典文件解析成拼音->汉字的结构
  62. // 与先分割后逐个去掉声调相比,先一次性全部去掉声调然后再分割速度至少快了3倍,前者大约需要120毫秒,后者大约只需要30毫秒(Chrome下)
  63. var notone = pinyinUtil.removeTone(pinyin_dict_withtone).split(',');
  64. var py2hz = {}, py, hz;
  65. for(var i=0, len = notone.length; i<len; i++)
  66. {
  67. hz = String.fromCharCode(i + 19968); // 汉字
  68. // = aaa[i];
  69. py = notone[i].split(' '); // 去掉了声调的拼音数组
  70. for(var j=0; j<py.length; j++)
  71. {
  72. py2hz[py[j]] = (py2hz[py[j]] || '') + hz;
  73. }
  74. }
  75. dict.py2hz = py2hz;
  76. }
  77. }
  78. },
  79. /**
  80. * 根据汉字获取拼音,如果不是汉字直接返回原字符
  81. * @param chinese 要转换的汉字
  82. * @param splitter 分隔字符,默认用空格分隔
  83. * @param withtone 返回结果是否包含声调,默认是
  84. * @param polyphone 是否支持多音字,默认否
  85. */
  86. getPinyin: function(chinese, splitter, withtone, polyphone)
  87. {
  88. if(!chinese || /^ +$/g.test(chinese)) return '';
  89. splitter = splitter == undefined ? ' ' : splitter;
  90. withtone = withtone == undefined ? true : withtone;
  91. polyphone = polyphone == undefined ? false : polyphone;
  92. var result = [];
  93. if(dict.withtone) // 优先使用带声调的字典文件
  94. {
  95. for (var i=0, len = chinese.length; i < len; i++)
  96. {
  97. var pinyin = dict.withtone[chinese[i]];
  98. if(pinyin)
  99. {
  100. if(!polyphone) pinyin = pinyin.replace(/ .*$/g, ''); // 如果不需要多音字
  101. if(!withtone) pinyin = this.removeTone(pinyin); // 如果不需要声调
  102. }
  103. result.push(pinyin || chinese[i]);
  104. }
  105. }
  106. else if(dict.notone) // 使用没有声调的字典文件
  107. {
  108. if(withtone) console.warn('pinyin_dict_notone 字典文件不支持声调!');
  109. if(polyphone) console.warn('pinyin_dict_notone 字典文件不支持多音字!');
  110. for (var i=0, len = chinese.length; i < len; i++)
  111. {
  112. var temp = chinese.charAt(i);
  113. result.push(dict.notone[temp] || temp);
  114. }
  115. }
  116. else
  117. {
  118. throw '抱歉,未找到合适的拼音字典文件!';
  119. }
  120. if(!polyphone) return result.join(splitter);
  121. else
  122. {
  123. if(window.pinyin_dict_polyphone) return parsePolyphone(chinese, result, splitter, withtone);
  124. else return handlePolyphone(result, ' ', splitter);
  125. }
  126. },
  127. /**
  128. * 获取汉字的拼音首字母
  129. * @param str 汉字字符串,如果遇到非汉字则原样返回
  130. * @param polyphone 是否支持多音字,默认false,如果为true,会返回所有可能的组合数组
  131. */
  132. getFirstLetter: function(str, polyphone)
  133. {
  134. polyphone = polyphone == undefined ? false : polyphone;
  135. if(!str || /^ +$/g.test(str)) return '';
  136. if(dict.firstletter) // 使用首字母字典文件
  137. {
  138. var result = [];
  139. for(var i=0; i<str.length; i++)
  140. {
  141. var unicode = str.charCodeAt(i);
  142. var ch = str.charAt(i);
  143. if(unicode >= 19968 && unicode <= 40869)
  144. {
  145. ch = dict.firstletter.all.charAt(unicode-19968);
  146. if(polyphone) ch = dict.firstletter.polyphone[unicode] || ch;
  147. }
  148. result.push(ch);
  149. }
  150. if(!polyphone) return result.join(''); // 如果不用管多音字,直接将数组拼接成字符串
  151. else return handlePolyphone(result, '', ''); // 处理多音字,此时的result类似于:['D', 'ZC', 'F']
  152. }
  153. else
  154. {
  155. var py = this.getPinyin(str, ' ', false, polyphone);
  156. py = py instanceof Array ? py : [py];
  157. var result = [];
  158. for(var i=0; i<py.length; i++)
  159. {
  160. result.push(py[i].replace(/(^| )(\w)\w*/g, function(m,$1,$2){return $2.toUpperCase();}));
  161. }
  162. if(!polyphone) return result[0];
  163. else return simpleUnique(result);
  164. }
  165. },
  166. /**
  167. * 拼音转汉字,只支持单个汉字,返回所有匹配的汉字组合
  168. * @param pinyin 单个汉字的拼音,可以包含声调
  169. */
  170. getHanzi: function(pinyin)
  171. {
  172. if(!dict.py2hz)
  173. {
  174. throw '抱歉,未找到合适的拼音字典文件!';
  175. }
  176. return dict.py2hz[this.removeTone(pinyin)] || '';
  177. },
  178. /**
  179. * 获取某个汉字的同音字,本方法暂时有问题,待完善
  180. * @param hz 单个汉字
  181. * @param sameTone 是否获取同音同声调的汉字,必须传进来的拼音带声调才支持,默认false
  182. */
  183. getSameVoiceWord: function(hz, sameTone)
  184. {
  185. sameTone = sameTone || false
  186. return this.getHanzi(this.getPinyin(hz, ' ', false))
  187. },
  188. /**
  189. * 去除拼音中的声调,比如将 xiǎo míng tóng xué 转换成 xiao ming tong xue
  190. * @param pinyin 需要转换的拼音
  191. */
  192. removeTone: function(pinyin)
  193. {
  194. var toneMap =
  195. {
  196. "ā": "a1",
  197. "á": "a2",
  198. "ǎ": "a3",
  199. "à": "a4",
  200. "ō": "o1",
  201. "ó": "o2",
  202. "ǒ": "o3",
  203. "ò": "o4",
  204. "ē": "e1",
  205. "é": "e2",
  206. "ě": "e3",
  207. "è": "e4",
  208. "ī": "i1",
  209. "í": "i2",
  210. "ǐ": "i3",
  211. "ì": "i4",
  212. "ū": "u1",
  213. "ú": "u2",
  214. "ǔ": "u3",
  215. "ù": "u4",
  216. "ü": "v0",
  217. "ǖ": "v1",
  218. "ǘ": "v2",
  219. "ǚ": "v3",
  220. "ǜ": "v4",
  221. "ń": "n2",
  222. "ň": "n3",
  223. "": "m2"
  224. };
  225. return pinyin.replace(/[āáǎàōóǒòēéěèīíǐìūúǔùüǖǘǚǜńň]/g, function(m){ return toneMap[m][0]; });
  226. }
  227. };
  228. /**
  229. * 处理多音字,将类似['D', 'ZC', 'F']转换成['DZF', 'DCF']
  230. * 或者将 ['chang zhang', 'cheng'] 转换成 ['chang cheng', 'zhang cheng']
  231. */
  232. function handlePolyphone(array, splitter, joinChar)
  233. {
  234. splitter = splitter || '';
  235. var result = [''], temp = [];
  236. for(var i=0; i<array.length; i++)
  237. {
  238. temp = [];
  239. var t = array[i].split(splitter);
  240. for(var j=0; j<t.length; j++)
  241. {
  242. for(var k=0; k<result.length; k++)
  243. temp.push(result[k] + (result[k]?joinChar:'') + t[j]);
  244. }
  245. result = temp;
  246. }
  247. return simpleUnique(result);
  248. }
  249. /**
  250. * 根据词库找出多音字正确的读音
  251. * 这里只是非常简单的实现,效率和效果都有一些问题
  252. * 推荐使用第三方分词工具先对句子进行分词,然后再匹配多音字
  253. * @param chinese 需要转换的汉字
  254. * @param result 初步匹配出来的包含多个发音的拼音结果
  255. * @param splitter 返回结果拼接字符
  256. */
  257. function parsePolyphone(chinese, result, splitter, withtone)
  258. {
  259. var poly = window.pinyin_dict_polyphone;
  260. var max = 7; // 最多只考虑7个汉字的多音字词,虽然词库里面有10个字的,但是数量非常少,为了整体效率暂时忽略之
  261. var temp = poly[chinese];
  262. if(temp) // 如果直接找到了结果
  263. {
  264. temp = temp.split(' ');
  265. for(var i=0; i<temp.length; i++)
  266. {
  267. result[i] = temp[i] || result[i];
  268. if(!withtone) result[i] = pinyinUtil.removeTone(result[i]);
  269. }
  270. return result.join(splitter);
  271. }
  272. for(var i=0; i<chinese.length; i++)
  273. {
  274. temp = '';
  275. for(var j=0; j<max && (i+j)<chinese.length; j++)
  276. {
  277. if(!/^[\u2E80-\u9FFF]+$/.test(chinese[i+j])) break; // 如果碰到非汉字直接停止本次查找
  278. temp += chinese[i+j];
  279. var res = poly[temp];
  280. if(res) // 如果找到了多音字词语
  281. {
  282. res = res.split(' ');
  283. for(var k=0; k<=j; k++)
  284. {
  285. if(res[k]) result[i+k] = withtone ? res[k] : pinyinUtil.removeTone(res[k]);
  286. }
  287. break;
  288. }
  289. }
  290. }
  291. // 最后这一步是为了防止出现词库里面也没有包含的多音字词语
  292. for(var i=0; i<result.length; i++)
  293. {
  294. result[i] = result[i].replace(/ .*$/g, '');
  295. }
  296. return result.join(splitter);
  297. }
  298. // 简单数组去重
  299. function simpleUnique(array)
  300. {
  301. var result = [];
  302. var hash = {};
  303. for(var i=0; i<array.length; i++)
  304. {
  305. var key = (typeof array[i]) + array[i];
  306. if(!hash[key])
  307. {
  308. result.push(array[i]);
  309. hash[key] = true;
  310. }
  311. }
  312. return result;
  313. }
  314. pinyinUtil.parseDict();
  315. pinyinUtil.dict = dict;
  316. window.pinyinUtil = pinyinUtil;
  317. });