例如:模糊查询班级中所有姓 “李、刘” 的学生,只需要在查询的时候输入一个 “L” 进行查询。
string PYM = "";
foreach (char c in PersonName)
{
if ((int)c >= 33 && (int)c <= 126)
{
//字母和符号原样保留
PYM += c.ToString();
}
else
{
//累加拼音声母
PYM += GetPYChar(c.ToString());
}
}
///
/// 取单个字符的拼音声母
///
/// 要转换的单个汉字
/// 拼音声母
public string GetPYChar(string c)
{
byte[] array = new byte[2];
array = System.Text.Encoding.Default.GetBytes(c);
int i = (short)(array[0] - ‘\0‘) * 256 + ((short)(array[1] - ‘\0‘));
if (i < 0xB0A1) return "*";
if (i < 0xB0C5) return "a";
if (i < 0xB2C1) return "b";
if (i < 0xB4EE) return "c&#