请帮我把这段代码翻过来!!!DToC(200分)

  • 主题发起人 主题发起人 nenma
  • 开始时间 开始时间
N

nenma

Unregistered / Unconfirmed
GUEST, unregistred user!
/////////////////////////////////////////////////////////////////////////////
// FileName: PY.pas
//
// Copyright (C) 1999 By Zhang Qing
//
// You can use and modify it ,but please send me an email.
//
// E-Mail: zhangqing@bbook.net
/////////////////////////////////////////////////////////////////////////////
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类型)只有第一个有效,但不会产生错误
// 例如,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
// 转换为小写
cTemp := Chr(Ord(cTemp)+32);
end;
result := result + string(cTemp);
strChineseTemp := Copy(strChineseTemp,3,Length(strChineseTemp));
end;
end;

end.
 
翻过去干吗,直接用Delphi编译成.obj不就行了。
或者用DLL也行嘛。
 
有好多汉字不能取得拼音码,谁能给我一张汉字内码对照表,多谢
aijun4955@sina.com
 
char GetPYIndexChar(AnsiString strChinese, bool bUpCase = true)
{
// 根据汉字表中拼音首字符分别为"A"至"Z"的汉字内码范围,
// 要检索的汉字只需要检查它的内码位于哪一个首字符的范围内,
// 就可以判断出它的拼音首字符。
static char rs;
WORD c,c1,c2;
c1 = strChinese[1]<<8;
c2 = strChinese[2]&amp;0x00FF;
c = c1+c2;
if (c>=0xB0A1 &amp;&amp;
c<=0xB0C4)
rs = 'A';
else
if (c>=0xB0C5 &amp;&amp;
c<=0xB2C0)
rs = 'B';
else
if (c>=0xB2C1 &amp;&amp;
c<=0xB4ED)
rs = 'C';
else
if (c>=0xB4EE &amp;&amp;
c<=0xB6E9)
rs = 'D';
else
if (c>=0xB6EA &amp;&amp;
c<=0xB7A1)
rs = 'E';
else
if (c>=0xB7A2 &amp;&amp;
c<=0xB8C0)
rs = 'F';
else
if (c>=0xB8C1 &amp;&amp;
c<=0xB9FD)
rs = 'G';
else
if (c>=0xB9FE &amp;&amp;
c<=0xBBF6)
rs = 'H';
else
if (c>=0xBBF7 &amp;&amp;
c<=0xBFA5)
rs = 'J';
else
if (c>=0xBFA6 &amp;&amp;
c<=0xC0AB)
rs = 'K';
else
if (c>=0xC0AC &amp;&amp;
c<=0xC2E7)
rs = 'L';
else
if (c>=0xC2E8 &amp;&amp;
c<=0xC4C2)
rs = 'M';
else
if (c>=0xC4C3 &amp;&amp;
c<=0xC5B5)
rs = 'N';
else
if (c>=0xC5B6 &amp;&amp;
c<=0xC5BD)
rs = 'O';
else
if (c>=0xC5BE &amp;&amp;
c<=0xC6D9)
rs = 'P';
else
if (c>=0xC6DA &amp;&amp;
c<=0xC8BA)
rs = 'Q';
else
if (c>=0xC8BB &amp;&amp;
c<=0xC8F5)
rs = 'R';
else
if (c>=0xC8F6 &amp;&amp;
c<=0xCBF9)
rs = 'S';
else
if (c>=0xCBFA &amp;&amp;
c<=0xCDD9)
rs = 'T';
else
if (c>=0xCDDA &amp;&amp;
c<=0xCEF3)
rs = 'W';
else
if (c>=0xCEF4 &amp;&amp;
c<=0xD188)
rs = 'X';
else
if (c>=0xD1B9 &amp;&amp;
c<=0xD4D0)
rs = 'Y';
else
if (c>=0xD4D1 &amp;&amp;
c<=0xD7F9)
rs = 'Z';
else
rs = 0;
if (!bUpCase)
{ // 转换为小写
rs += 32;
}
return rs;
}
char *GetPYIndexStr(AnsiString strChinese, AnsiString &amp;strOut,
bool bUpCase = true)
{
char cTemp;
AnsiString strTemp;
int i=1;
while (1)
{
//AnsiString的下标从1开始
strTemp = strChinese.SubString(i,2);
if (strTemp == "")
break;
i+=2;
cTemp = GetPYIndexChar(strTemp);
if (!bUpCase){ // 转换为小写
cTemp += 32;
}
strOut += cTemp;
}
return strOut.c_str();
}
void __fastcall TForm1::Button1Click(TObject *Sender)
{
AnsiString S;
ShowMessage(GetPYIndexStr(Edit1->Text, S));
}
 
接受答案了.
 
后退
顶部