unit PY;
interface
uses sysutils;
// »ñÈ¡ºº×ÖµÄÆ´ÒôÊ××Ö·û,Õâ¸öº¯Êý½«ÓÃÔÚGetPYIndexStr ÖÐ.
function GetPYIndexChar(strChinese: string; bUpCase: Boolean = True): char;
// »ñÈ¡¶à¸öºº×ÖµÄÆ´ÒôÊ××Ö·û×é³ÉµÄ×Ö·û´®.
function GetPYIndexStr(strChinese: string; bUpCase: Boolean = True): string;
implementation
////////////////////////////////////////////////////////////////////////////
// º¯Êý: GetPYIndexChar(strChinese: string;bUpCase: Boolean = True): char;
//
// º¯Êý¹¦ÄÜ:»ñÈ¡ºº×ÖµÄÆ´ÒôÊ××Ö·û.
// Àý: GetPYIndexChar('³Ì') ½«·µ»Ø'C'.
//
// ×¢Òâ:¶ÔÓÚ¶àÓÚÒ»¸öºº×ÖµÄÊäÈë(stringÀàÐ&Iacute
Ö»ÓеÚÒ»¸öÓÐЧ,µ«²»»á²úÉú´íÎó
// ÀýÈç,GetPYIndexChar('³ÌÐò')Ò²½«·µ»Ø'C'.
//
// µÚ¶þ¸ö²ÎÊý¾ö¶¨·µ»Ø´óд»¹ÊÇСд , ȱʡΪ´óд .
////////////////////////////////////////////////////////////////////////////
function GetPYIndexChar(strChinese: string;bUpCase: Boolean = True): char;
begin
// ¸ù¾Ýºº×Ö±íÖÐÆ´ÒôÊ××Ö·û·Ö±ðΪ¡°A¡±ÖÁ¡°Z¡±µÄºº×ÖÄÚÂ뷶Χ£¬
// Òª¼ìË÷µÄºº×ÖÖ»ÐèÒª¼ì²éËüµÄÄÚÂëλÓÚÄÄÒ»¸öÊ××Ö·ûµÄ·¶Î§ÄÚ£¬
// ¾Í¿ÉÒÔÅжϳöËüµÄÆ´ÒôÊ××Ö·û¡£
case WORD(strChinese[1]) shl 8 + WORD(strChinese[2]) of
$B0A1..$B0C4 : result := 'A';
$B0C5..$B2C0 : result := 'B';
$B2C1..$B4ED : result := 'C';
$B4EE..$B6E9 : result := 'D';
$B6EA..$B7A1 : result := 'E';
$B7A2..$B8C0 : result := 'F';
$B8C1..$B9FD : result := 'G';
$B9FE..$BBF6 : result := 'H';
$BBF7..$BFA5 : result := 'J';
$BFA6..$C0AB : result := 'K';
$C0AC..$C2E7 : result := 'L';
$C2E8..$C4C2 : result := 'M';
$C4C3..$C5B5 : result := 'N';
$C5B6..$C5BD : result := 'O';
$C5BE..$C6D9 : result := 'P';
$C6DA..$C8BA : result := 'Q';
$C8BB..$C8F5 : result := 'R';
$C8F6..$CBF9 : result := 'S';
$CBFA..$CDD9 : result := 'T';
$CDDA..$CEF3 : result := 'W';
$CEF4..$D188 : result := 'X';
$D1B9..$D4D0 : result := 'Y';
$D4D1..$D7F9 : result := 'Z';
else
result := char(0);
end;
if not bUpCase then
begin // ת»»ÎªÐ¡Ð´
result := Chr(Ord(result)+32);
end;
end;
////////////////////////////////////////////////////////////////////////////
// º¯Êý: GetPYIndexStr(strChinese: string;bUpCase: Boolean = True): string;
//
// º¯Êý¹¦ÄÜ:»ñÈ¡¶à¸öºº×ÖµÄÆ´ÒôÊ××Ö·û×é³ÉµÄ×Ö·û´®.
// Àý: GetPYIndexStr('³Ì') ½«·µ»Ø'C'.
// GetPYIndexStr('³ÌÐò')½«·µ»Ø'CX'.
//
// µÚ¶þ¸ö²ÎÊý¾ö¶¨·µ»Ø´óд»¹ÊÇСд , ȱʡΪ´óд .
////////////////////////////////////////////////////////////////////////////
function GetPYIndexStr(strChinese: string;bUpCase: Boolean = True): string;
var
strChineseTemp : string;
cTemp : Char;
begin
result := '';
strChineseTemp := strChinese;
while strChineseTemp<>'' do
begin
cTemp := GetPYIndexChar(strChineseTemp);
if not bUpCase then
begin // ×&ordf;&raquo;&raquo;&Icirc;&ordf;&ETH;&iexcl;&ETH;&acute;
cTemp := Chr(Ord(cTemp)+32);
end;
result := result + string(cTemp);
strChineseTemp := Copy(strChineseTemp,3,Length(strChineseTemp));
end;
end;
end.