public static string cvt(string str)
{
if (str.compareto("吖") < 0)
{
string s=str.substring(0,1).toupper();
if (char.isnumber(s, 0))
{
return "0";
}
else
{
return s;
}
}else if (str.compareto("八") < 0)
{
return "a";
}
else if (str.compareto("嚓") < 0)
{
return "b";
}
else if (str.compareto("咑") < 0)
{
return "c";
}
else if (str.compareto("妸") < 0)
{
return "d";
}
else if (str.compareto("发") < 0)
{
return "e";
}
else if (str.compareto("旮") < 0)
{
return "f";
}
else if (str.compareto("铪") < 0)
{
return "g";
}
else if (str.compareto("讥") < 0)
{
return "h";
}
else if (str.compareto("咔") < 0)
{
return "j";
}
else if (str.compareto("垃") < 0)
{
return "k";
}
else if (str.compareto("嘸") < 0)
{
return "l";
}
else if (str.compareto("拏") < 0)
{
return "m";
}
else if (str.compareto("噢") < 0)
{
return "n";
}
else if (str.compareto("妑") < 0)
{
return "o";
}
else if (str.compareto("七") < 0)
{
return "p";
}
else if (str.compareto("亽") < 0)
{
return "q";
}
else if (str.compareto("仨") < 0)
{
return "r";
}
else if (str.compareto("他") < 0)
{
return "s";
}
else if (str.compareto("哇") < 0)
{
return "t";
}
else if (str.compareto("夕") < 0)
{
return "w";
}
else if (str.compareto("丫") < 0)
{
return "x";
}
else if (str.compareto("帀") < 0)
{
return "y";
}
else if (str.compareto("咗") < 0)
{
return "z";
}
else
{
return "0";
}
}