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.

解决方案 »

  1.   

    unit Unit1;interfaceuses
      Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
      StdCtrls;type
      TForm1 = class(TForm)
        Edit1: TEdit;
        ListBox1: TListBox;
        ListBox2: TListBox;
        Label2: TLabel;
        Label1: TLabel;
        Button1: TButton;
        procedure Edit1Change(Sender: TObject);
        procedure Button1Click(Sender: TObject);
      private
        { Private declarations }
      public
        { Public declarations }
      end;var
      Form1: TForm1;implementationfunction GetCharInd(zzchar:string):char;
    begin
      case WORD(zzchar[1]) shl 8+WORD(zzchar[2]) of
        $B0A1..$B0C4:result:='A';     //45217..45252
        $B0C5..$B2C0:result:='B';     //45253..45760
        $B2C1..$B4ED:result:='C';     //45761..46317
        $B4EE..$B6E9:result:='D';     //46318..46825
        $B6EA..$B7A1:result:='E';     //46826..47009
        $B7A2..$B8C0:result:='F';     //47010..47296
        $B8C1..$B9FD:result:='G';     //47297..47613
        $B9FE..$BBF6:result:='H';     //47614..48118
        $BBF7..$BFA5:result:='J';     //48119..49061
        $BFA6..$C0AB:result:='K';     //49062..49323
        $C0AC..$C2E7:result:='L';     //49324..49895
        $C2E8..$C4C2:result:='M';     //49896..50370
        $C4C3..$C5B5:result:='N';     //50371..50613
        $C5B6..$C5BD:result:='O';     //50614..50621
        $C5BE..$C6D9:result:='P';     //50622..50905
        $C6DA..$C8BA:result:='Q';     //50906..51386
        $C8BB..$C8F5:result:='R';     //51387..51445
        $C8F6..$CBF9:result:='S';     //51446..52217
        $CBFA..$CDD9:result:='T';     //52218..52697
        $CDDA..$CEF3:result:='W';     //52698..52979
        $CEF4..$D188:result:='X';     //52980..53640
        $D1B9..$D4D0:result:='Y';     //53689..54480
        $D4D1..$D7F9:result:='Z';     //54481..55289
      else
        result:=#0;
      end;
    end;function DisByStrInd(ListBoxStr:TListBox;StrInd:string):string;
    label NotFound;
    var
      zzchar :string;
      i,j:integer;
    begin
      for i:=0 to ListBoxStr.Items.Count-1 do
      begin
        for j:=1 to Length(StrInd) do //一个英语字母代表一个汉字 1:2
        begin
          zzchar:=ListBoxStr.Items[i][2*j-1]+ListBoxStr.Items[i][2*j]; //取一个汉字
          if (StrInd[j]<>'?') and (UpperCase(StrInd[j])<>GetCharInd(zzchar)) //得到他的首字母
          then goto NotFound;
        end;
        if result='' then result:=ListBoxStr.Items[i]   //添加itmes
        else result:=result+#13+ListBoxStr.Items[i];     //追加items #13
    NotFound:
      end;
    end;{$R *.DFM}procedure TForm1.Edit1Change(Sender: TObject);
    var
      SelStr:string;
    begin
      SelStr:='';
      ListBox2.Items.Text:=DisByStrInd(listBox1,Edit1.Text);
    end;procedure TForm1.Button1Click(Sender: TObject);
    begin
        edit1.Text :=(inttostr($D4D1)+'..'+inttostr($D7F9));
    end;end.
      

  2.   

    这么多人写,我就不写了,源程序倒有一个,可返回首拼音,也可返回全拼,不过只能在win2k/xp下用。
      

  3.   

    我也有一个,要不?
    可到
    http://www.csdn.net/cnshare/soft/12/12421.shtm
    ============================
    @* .☆ / */ . / * . ☆/ *。
       ◢◣。       ◢◣。
      ◢★◣。     ◢★◣。
     ◢■■◣。   ◢■■◣。
    ◢■■■◣。 ◢■■■◣。
    ︸︸||︸︸ !!︸︸||︸︸
    愿您有快乐的每一天 ^_^!!
      

  4.   

    我也有一个,要不?
    可到
    http://www.csdn.net/cnshare/soft/12/12421.shtm
    ============================
    @* .☆ / */ . / * . ☆/ *。
       ◢◣。       ◢◣。
      ◢★◣。     ◢★◣。
     ◢■■◣。   ◢■■◣。
    ◢■■■◣。 ◢■■■◣。
    ︸︸||︸︸ !!︸︸||︸︸
    愿您有快乐的每一天 ^_^!!