摘要:
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace ChineseToSpell{ /// <summary> /// 实现汉字转化为拼音 /// <remarks>实现的原理就是先将汉字转化成为内码,然后通过内码和拼音的对照来查找</remarks> /// </summary> public class ChineseToSpell { private static Reg. 阅读全文