function GetPYIndexChar( hzchar:string):char;//»ñµÃµ¥¸öºº×ÖµÄÆ´ÒôÊ××Öĸ
    begin
     case WORD(hzchar[1]) shl 8 + WORD(hzchar[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);
       result := ' ';
     end;
    end;

解决方案 »

  1.   

    转贴
    // 获取指定汉字的拼音索引字母
    function GetPYIndexChar( hzchar:string):char;
    begin
      case WORD(hzchar[1]) shl 8 + WORD(hzchar[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;
    end;//得到中文助记码
    function ChineseZjmChar(const s: String): string;
    var
      SW: WideString;
      C,D: String;
      i  : integer;
    begin
      try
        SW := S;
        D:='';
        for i :=1 to Length(SW) do
        begin
          C := SW[i];
          if Length(C) > 1 then begin
            D:=D+GetPYIndexChar(C);
          end;
        end;
        result := D;
      except
        Result := '';
      end;
    end;
    不过只能得到常用字。
      

  2.   

    Caption := GetPinYinForChinese( '中国' );//-----------------------------------------------------
    function GetPinYinForChinese( strChinese :string ):string;
    var
      iStrLen :integer;
      i :byte;
      hz,py :string;    function GetPYIndexChar( hzchar:string):char;
         case WORD(hzchar[1]) shl 8 + WORD(hzchar[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);
           result := ' ';
         end;
        end;
    begin
      iStrLen := Length(strChinese);
      i := 1;
      hz := '';
      py := '';
      while i<=iStrLen do
      begin
        if ord(strChinese[i]) >= 128 then hz := hz+strChinese[i]
                                     else hz := '';
        if Length(hz)=2
           then begin
                  py := py + GetPYIndexChar( hz );
                  hz := '';
                end;
        inc(i);
      end;
      result := py;
    end;